Twitter API 1.1 test program. (use SuperTweet.net)
Dependencies: EthernetInterface HTTPClient mbed-rtos mbed
Twitter API V1.1とSuperTweetを使用してtweetするプログラムです。
オフィシャル版のHTTPClientではBASIC認証をサポートしていないので、Kazushi MukaiyamaさんのHTTPClientライブラリを使用しています。
main.cpp
- Committer:
- kanpapa
- Date:
- 2013-06-15
- Revision:
- 4:064d41eb0a16
- Parent:
- 0:05d2322a3ff3
File content as of revision 4:064d41eb0a16:
#include "mbed.h"
#include "EthernetInterface.h"
#include "HTTPClient.h" // basicauth enabled. http://mbed.org/users/kazushi2008/code/HTTPClient/
EthernetInterface eth;
HTTPClient twitter;
char str[512];
int main()
{
eth.init(); //Use DHCP
eth.connect();
//POST data
HTTPMap map;
HTTPText inText(str, 512);
map.put("status", "I am tweeting from my mbed!");
printf("\nTrying to post data...\n");
twitter.basicAuth("myuser", "mypass"); //We use basic authentication, replace with you account's parameters
int ret = twitter.post("http://api.supertweet.net/1.1/statuses/update.json", map, &inText);
if (!ret)
{
printf("Executed POST successfully - read %d characters\n", strlen(str));
printf("Result: %s\n", str);
}
else
{
printf("Error - ret = %d - HTTP return code = %d\n", ret, twitter.getHTTPResponseCode());
}
eth.disconnect();
while(1) {
}
}