aboutsummaryrefslogtreecommitdiff
path: root/libraries/Bridge/examples/Temboo/UpdateFacebookStatus
diff options
context:
space:
mode:
authorFederico Fissore <f.fissore@arduino.cc>2013-06-28 11:08:56 +0200
committerFederico Fissore <f.fissore@arduino.cc>2013-06-28 15:29:39 +0200
commit9bc2ad10cb38ca5c659abb41f03b169928c70792 (patch)
tree70c7a0a0a9d74cf240358c554fe82491372b69e7 /libraries/Bridge/examples/Temboo/UpdateFacebookStatus
parent66b1a7ea395c04d971dc666dfe3274778adbaf1e (diff)
updated and added new Temboo examples
Diffstat (limited to 'libraries/Bridge/examples/Temboo/UpdateFacebookStatus')
-rw-r--r--libraries/Bridge/examples/Temboo/UpdateFacebookStatus/UpdateFacebookStatus.ino133
1 files changed, 133 insertions, 0 deletions
diff --git a/libraries/Bridge/examples/Temboo/UpdateFacebookStatus/UpdateFacebookStatus.ino b/libraries/Bridge/examples/Temboo/UpdateFacebookStatus/UpdateFacebookStatus.ino
new file mode 100644
index 0000000..1352762
--- /dev/null
+++ b/libraries/Bridge/examples/Temboo/UpdateFacebookStatus/UpdateFacebookStatus.ino
@@ -0,0 +1,133 @@
+/*
+ UpdateFacebookStatus
+
+ Demonstrates sending a Facebook status update using the Temboo Arduino Yun SDK.
+
+ Check out the latest Arduino & Temboo examples and support docs at http://www.temboo.com/arduino
+
+ A Temboo account and application key are necessary to run all Temboo examples.
+ If you don't already have one, you can register for a free Temboo account at
+ http://www.temboo.com
+
+ In order to run this sketch, you'll need to register an application using
+ the Facebook dev console at https://developers.facebook.com/apps. After creating
+ the app, log in to Temboo and visit https://www.temboo.com/library/Library/Facebook/Publishing/SetStatus/
+ to use our OAuth Wizard (or OAuth Choreos) to obtain a Facebook access token.
+ Substitute your access token for the placeholder value of FACEBOOK_ACCESS_TOKEN below.
+
+ This example assumes basic familiarity with Arduino sketches, and that your Yun
+ is connected to the Internet.
+
+ Looking for social APIs? We've got Twitter, Google+, Instagram, Tumblr and more.
+
+ This example code is in the public domain.
+*/
+
+#include <Bridge.h>
+#include <Console.h>
+#include <FileIO.h>
+#include <HttpClient.h>
+#include <Process.h>
+#include "TembooAccount.h" // contains Temboo account information,
+ // as described in the footer comment below
+
+/*** SUBSTITUTE YOUR VALUES BELOW: ***/
+
+// the Facebook Access Token, which can be obtained using the Temboo OAuth Wizard or Choreos
+const String FACEBOOK_ACCESS_TOKEN = "xxxxxxxxxx";
+
+
+int numRuns = 0; // execution count, so this sketch doesn't run forever
+int maxRuns = 10; // the max number of times the Facebook SetStatus Choreo should run
+
+void setup() {
+ Serial.begin(9600);
+
+ // For debugging, wait until a serial console is connected.
+ delay(4000);
+ while(!Serial);
+ Bridge.begin();
+}
+
+void loop() {
+ // while we haven't reached the max number of runs...
+ if (numRuns < maxRuns) {
+
+ // print status
+ Serial.println("Running UpdateFacebookStatus - Run #" + String(numRuns++) + "...");
+
+ // Define the status message we want to post on Facebook; since Facebook
+ // doesn't allow duplicate status messages, we'll include a changing value.
+ String statusMsg = "My Arduino Yun has been running for " + String(millis()) + " milliseconds!";
+
+ // define the Process that will be used to call the "temboo" client
+ Process SetStatusChoreo;
+
+ // invoke the Temboo client
+ SetStatusChoreo.begin("temboo");
+
+ // set Temboo account credentials
+ SetStatusChoreo.addParameter("-a");
+ SetStatusChoreo.addParameter(TEMBOO_ACCOUNT);
+ SetStatusChoreo.addParameter("-u");
+ SetStatusChoreo.addParameter(TEMBOO_APP_KEY_NAME);
+ SetStatusChoreo.addParameter("-p");
+ SetStatusChoreo.addParameter(TEMBOO_APP_KEY);
+
+ // tell the Temboo client which Choreo to run (Facebook > Publishing > SetStatus)
+ SetStatusChoreo.addParameter("-c");
+ SetStatusChoreo.addParameter("/Library/Facebook/Publishing/SetStatus");
+
+ // set the required choreo inputs
+ // see https://www.temboo.com/library/Library/Facebook/Publishing/SetStatus/
+ // for complete details about the inputs for this Choreo
+
+ SetStatusChoreo.addParameter("-i");
+ SetStatusChoreo.addParameter("AccessToken:" + FACEBOOK_ACCESS_TOKEN);
+ SetStatusChoreo.addParameter("-i");
+ SetStatusChoreo.addParameter("Message:" + statusMsg);
+
+
+ // tell the Process to run and wait for the results. The
+ // return code (rc) will tell us whether the Temboo client
+ // was able to send our request to the Temboo servers
+ unsigned int rc = SetStatusChoreo.run();
+
+ // print the response code and API response.
+ Serial.println("Resonse code: " + String(rc));
+
+ // note that in this case, we're just printing the raw response from Facebook.
+ // see the examples on using Temboo SDK output filters at http://www.temboo.com/arduino
+ // for information on how to filter this data
+ while(SetStatusChoreo.available()) {
+ Serial.print((char)SetStatusChoreo.read());
+ }
+
+ SetStatusChoreo.close();
+ }
+
+ Serial.println("Sleeping...");
+ Serial.println("");
+
+ delay(30000); // sleep 30 seconds between SetStatus calls
+}
+
+/*
+ IMPORTANT NOTE: TembooAccount.h:
+
+ TembooAccount.h is a file referenced by this sketch that contains your Temboo account information.
+ You need to create this file. To do so, make a new tab in Arduino, call it TembooAccount.h, and
+ include the following variables and constants:
+
+ #define TEMBOO_ACCOUNT "myTembooAccountName" // your Temboo account name
+ #define TEMBOO_APP_KEY_NAME "myFirstApp" // your Temboo app key name
+ #define TEMBOO_APP_KEY "xxx-xxx-xxx-xx-xxx" // your Temboo app key
+
+ The same TembooAccount.h file settings can be used for all Temboo SDK sketches.
+
+ You can find your Temboo App Key information on the Temboo website,
+ under My Account > Application Keys
+
+ Keeping your account information in a separate file means you can save it once,
+ then just distribute the main .ino file without worrying that you forgot to delete your credentials.
+*/ \ No newline at end of file