forked from amcewen/HttpClient
-
Notifications
You must be signed in to change notification settings - Fork 170
Added Custom Header Example #20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
sandeepmistry
merged 2 commits into
arduino-libraries:master
from
agdl:customHeaderExample
Jan 12, 2017
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
/* | ||
Custom request header example for the ArduinoHttpClient | ||
library. This example sends a GET and a POST request with a custom header every 5 seconds. | ||
|
||
note: WiFi SSID and password are stored in config.h file. | ||
If it is not present, add a new tab, call it "config.h" | ||
and add the following variables: | ||
char ssid[] = "ssid"; // your network SSID (name) | ||
char pass[] = "password"; // your network password | ||
|
||
based on SimpleGet example by Tom Igoe | ||
header modifications by Todd Treece | ||
|
||
this example is in the public domain | ||
*/ | ||
|
||
#include <ArduinoHttpClient.h> | ||
#include <WiFi101.h> | ||
#include "config.h" | ||
|
||
char serverAddress[] = "192.168.0.3"; // server address | ||
int port = 8080; | ||
|
||
WiFiClient wifi; | ||
HttpClient client = HttpClient(wifi, serverAddress, port); | ||
int status = WL_IDLE_STATUS; | ||
String response; | ||
int statusCode = 0; | ||
|
||
void setup() { | ||
Serial.begin(9600); | ||
while ( status != WL_CONNECTED) { | ||
Serial.print("Attempting to connect to Network named: "); | ||
Serial.println(ssid); // print the network name (SSID); | ||
|
||
// Connect to WPA/WPA2 network: | ||
status = WiFi.begin(ssid, pass); | ||
} | ||
|
||
// print the SSID of the network you're attached to: | ||
Serial.print("SSID: "); | ||
Serial.println(WiFi.SSID()); | ||
|
||
// print your WiFi shield's IP address: | ||
IPAddress ip = WiFi.localIP(); | ||
Serial.print("IP Address: "); | ||
Serial.println(ip); | ||
} | ||
|
||
void loop() { | ||
|
||
Serial.println("making GET request"); | ||
client.beginRequest(); | ||
client.get("/"); | ||
client.sendHeader("X-CUSTOM-HEADER", "custom_value"); | ||
client.endRequest(); | ||
|
||
// read the status code and body of the response | ||
statusCode = client.responseStatusCode(); | ||
response = client.responseBody(); | ||
|
||
Serial.print("GET Status code: "); | ||
Serial.println(statusCode); | ||
Serial.print("GET Response: "); | ||
Serial.println(response); | ||
|
||
Serial.println("Wait five seconds"); | ||
delay(5000); | ||
|
||
Serial.println("making POST request"); | ||
String postData = "name=Alice&age=12"; | ||
client.beginRequest(); | ||
client.post("/"); | ||
client.sendHeader(HTTP_HEADER_CONTENT_TYPE, "application/x-www-form-urlencoded"); | ||
client.sendHeader(HTTP_HEADER_CONTENT_LENGTH, postData.length()); | ||
client.sendHeader("X-CUSTOM-HEADER", "custom_value"); | ||
client.endRequest(); | ||
client.write((const byte*)postData.c_str(), postData.length()); | ||
|
||
// read the status code and body of the response | ||
statusCode = client.responseStatusCode(); | ||
response = client.responseBody(); | ||
|
||
Serial.print("POST Status code: "); | ||
Serial.println(statusCode); | ||
Serial.print("POST Response: "); | ||
Serial.println(response); | ||
|
||
Serial.println("Wait five seconds"); | ||
delay(5000); | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
char ssid[] = "ssid"; // your network SSID (name) | ||
char pass[] = "password"; // your network password | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@agdl this example also does a POST with custom header.
So I suggest ether:
or