adrianF 43 Posted September 15, 2014 Share Posted September 15, 2014 So cool! An easy "fix" to side-step Twitter's prevention of duplicate tweets could be to add a timestamp. The "append row" API for google spreadsheets is also a really cool & practical Temboo "choreo". Perfect for datalogging apps! Adrian Quote Link to post Share on other sites
bluehash 1,581 Posted September 15, 2014 Share Posted September 15, 2014 So cool! An easy "fix" to side-step Twitter's prevention of duplicate tweets could be to add a timestamp. The "append row" API for google spreadsheets is also a really cool & practical Temboo "choreo". Perfect for datalogging apps! Adrian @@adrianF, Is this setting on Temboo's side? Quote Link to post Share on other sites
MORA99 9 Posted September 15, 2014 Share Posted September 15, 2014 While this is pretty neat, it would be really cool if you could do programming from the cloud. As I understand it the code energia makes are the actual c code and it doesnt use a bootloader to get it on the cc3200, it flashes it directly. If there was a small wifi bootloader instead, that could accept either a new hex file, or wiring code Quote Link to post Share on other sites
spirilis 1,265 Posted September 15, 2014 Share Posted September 15, 2014 While this is pretty neat, it would be really cool if you could do programming from the cloud. As I understand it the code energia makes are the actual c code and it doesnt use a bootloader to get it on the cc3200, it flashes it directly. If there was a small wifi bootloader instead, that could accept either a new hex file, or wiring code That might be kind've cool, or ......... Kind've scary Quote Link to post Share on other sites
adrianF 43 Posted September 15, 2014 Share Posted September 15, 2014 I did a quick test with the CC3200 Launchpad. Created a twitter "choreo" and ran the auto generated code from Temboo. Result. Although twitter does not allow the same message to be posted as a duplicate.. errors out. It would be good to pass a string generated in Energia to Temboo's choreo. So far I like it.. It will be awesome to join choreos together. Good question. So far, I would have handled that locally on the LaunchPad, but I believe Temboo offers a few cloud-side things (i.e. filtering XML/JSON outputs from REST calls) before it is finally pushed back to the LaunchPad. Quote Link to post Share on other sites
spirilis 1,265 Posted September 16, 2014 Share Posted September 16, 2014 Q for @@adrianF and @@Temboo - The CC3200 and CC3100's support SSL natively for HTTPS connections as I understand it. Does the LaunchPad-Temboo integration utilize that? Or are the choreo connections going plaintext over the air/wire? abecedarian 1 Quote Link to post Share on other sites
bluehash 1,581 Posted September 16, 2014 Share Posted September 16, 2014 I did a quick test with the CC3200 Launchpad. Created a twitter "choreo" and ran the auto generated code from Temboo. Result. Although twitter does not allow the same message to be posted as a duplicate.. errors out. It would be good to pass a string generated in Energia to Temboo's choreo. So far I like it.. It will be awesome to join choreos together. So cool! An easy "fix" to side-step Twitter's prevention of duplicate tweets could be to add a timestamp. The "append row" API for google spreadsheets is also a really cool & practical Temboo "choreo". Perfect for datalogging apps! Adrian Good question. So far, I would have handled that locally on the LaunchPad, but I believe Temboo offers a few cloud-side things (i.e. filtering XML/JSON outputs from REST calls) before it is finally pushed back to the LaunchPad. From Temboo's support You can slightly modify the code that is generated on the Twitter Tweets StatusesUpdate to alter successive Tweets. When you save your inputs into a Profile - only save the AccessToken, AccessTokenSecret, APIKey, and APISecret. Then when you put in your StatusUpdate value, the code will look something like the following: // Set profile to use for execution StatusesUpdateChoreo.setProfile("YourSavedProfileName"); // Set Choreo inputs String StatusUpdateValue = "I'm Tweet number 1"; StatusesUpdateChoreo.addInput("StatusUpdate", StatusUpdateValue); Then you can change the content of the tweet in a number of ways. For example, you can have a value increment in the status // Set profile to use for execution StatusesUpdateChoreo.setProfile("TwitterTemboTest"); int count = 1; // Set Choreo inputs String StatusUpdateValue = "I'm Tweet number " + count++; StatusesUpdateChoreo.addInput("StatusUpdate", StatusUpdateValue); Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.