Skip to content

Commit

Permalink
Merge pull request #608 from ohadcn/patch-1
Browse files Browse the repository at this point in the history
 add CORS headers
  • Loading branch information
tablatronix authored Jun 19, 2018
2 parents bff3d75 + 7f6039a commit 00b14d5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions WiFiManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1167,6 +1167,7 @@ void WiFiManager::handleWifiSave() {
page += FPSTR(HTTP_END);

server->sendHeader(FPSTR(HTTP_HEAD_CL), String(page.length()));
server->sendHeader(HTTP_HEAD_CORS, HTTP_HEAD_CORS_ALLOW_ALL);
server->send(200, FPSTR(HTTP_HEAD_CT), page);

DEBUG_WM(DEBUG_DEV,F("Sent wifi save page"));
Expand Down
4 changes: 3 additions & 1 deletion strings_en.h
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,8 @@ const char T_h[] PROGMEM = "{h}"; // @token h
const char HTTP_HEAD_CL[] PROGMEM = "Content-Length";
const char HTTP_HEAD_CT[] PROGMEM = "text/html";
const char HTTP_HEAD_CT2[] PROGMEM = "text/plain";
const char HTTP_HEAD_CORS[] PROGMEM = "Access-Control-Allow-Origin";
const char HTTP_HEAD_CORS_ALLOW_ALL[] PROGMEM = "*";

const char * const WIFI_STA_STATUS[] PROGMEM
{
Expand Down Expand Up @@ -315,4 +317,4 @@ const char * const AUTH_MODE_NAMES[] PROGMEM
};
#endif

const char* const WIFI_MODES[] PROGMEM = { "NULL", "STA", "AP", "STA+AP" };
const char* const WIFI_MODES[] PROGMEM = { "NULL", "STA", "AP", "STA+AP" };

0 comments on commit 00b14d5

Please # to comment.