Skip to content

Commit 14b4f40

Browse files
committed
Added headers to open CORS
1 parent 7ad2599 commit 14b4f40

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

embedded/embedded.ino

+4-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,10 @@ void loop()
121121
// send a standard http response header
122122
client.println("HTTP/1.1 200 OK");
123123
client.println("Content-Type: text/html");
124-
client.println("Connection: close"); // the connection will be closed after completion of the response
124+
client.println("Connection: close"); // the connection will be closed after completion of the response
125+
client.println("Access-Control-Allow-Origin: *"); // open CORS for all domains
126+
client.println("Access-Control-Allow-Methods: GET, POST, PUT, DELETE, OPTIONS");
127+
125128
client.println();
126129
// send the content of the requested file
127130
client.print(handleRequest(request));

0 commit comments

Comments
 (0)