Questions tagged [temboo]

Temboo is a cloud-based code generation platform with 2000+ processes for APIs, databases, and more. Reimagining programming for software & hardware developers.

35 questions
0
votes
1 answer

Dropbox Error 401

I was using Temboo for Dropbox integration for one of my android projects. while the Choreos in the website runs fine and authenticate fine and my app compilation in Android Studio has no errors etc, I have a constant authorization problem when I…
Jishan
  • 1,654
  • 4
  • 28
  • 62
0
votes
1 answer

How to convert Objective-C to Swift iOS for Temboo Http Post API

Temboo provides Objective-C code for their Choreos (API requests). I used Temboo instructions and able to get the code working inside viewVontroller.m: #import "ViewController.h" #import "TMBUtilities.h" #import "TMBChoreography.h" #import…
antbithia
  • 49
  • 1
  • 7
0
votes
1 answer

How to store and retrieve data from bigquery to arduino using temboo?

I want to create a Internet of things project using temboo in that i use arduino as my device, temboo has a support to connect and store our sensor streaming data using google bigquery,here my scenario is set a threshold value in the bigquery table…
0
votes
1 answer

ImportError: No module named temboo.core.session

I'm using a python file to run on arduino yun. but its giving me this error: Traceback (most recent call last): File "/mnt/sda1/upload_picture.py", line 7, in module from temboo.core.session import TembooSession ImportError: No module named…
0
votes
2 answers

How to access data from PHP object array

I'm getting this object array as a response from the temboo fitbit api. This is the print_r($result) output: Fitbit_Statistics_GetTimeSeriesByDateRange_Results Object ( [outputArray:protected] => Array ( [Response] =>…
user2570937
  • 802
  • 3
  • 17
  • 34
0
votes
1 answer

Temboo call hangs Arduino

I am using an Arduino Uno with the Desloo W5100 Ethernet shield. Whenever I try to make calls to Parse using Temboo, the device just hangs. Sometimes for minutes...sometimes indefinitely. Here is what I run: void updateParseDoorState() { if…
Toni_Entranced
  • 969
  • 2
  • 12
  • 29
0
votes
1 answer

How to change the background color in processing, according to whether a tweet has a positive or negative sentiment?

I’m new to Processing and I’m trying to create an interactive infographic, in which the background colour changes according to whether the most recent tweet about an event contains positive or negative words. For a positive tweet the background will…
0
votes
1 answer

Google bigquery for free?

Im new here and looking actually for this: https://temboo.com/hardware/google-big-query-getting-started Its going about how to connect Sensors to Google Bigquery, but I actually don't know whether it is free or not. My usage per month were around…
Petr
  • 17
  • 6
0
votes
1 answer

How to write to stdin() of a Yun Process?

How do I write to the stdin of an Arduino Yun Linux process that was launched by the Bridge Process of a sketch? Background: I have an control and logging application that needs to log to a Google Drive spreadsheet through Temboo.com. I have it…
Louis B.
  • 487
  • 1
  • 4
  • 8
0
votes
1 answer

Trouble with OAuth in Temboo

I am trying to authorize Twitter For a user in iOS and Temboo. Here is how I am attempting to do it. In my SetttingsViewController class I have a button where the user can tap to begin the TwitterAuthentication. I have the InitializeOauth methods in…
Prad
  • 469
  • 1
  • 8
  • 28
0
votes
0 answers

Using xml.etree.ElementTree.find() with custom tags

I am using Temboo to get the weather for an address on Yahoo. Since this returns XML code, I am using ElementTree.find() to find the custom Yahoo tag . But when I run the program, I get the following error: SyntaxError: prefix…
user2352923
  • 47
  • 1
  • 9
0
votes
1 answer

TembooChoreo' was not declared in this scope

I am a new user for Temboo, I am trying to use their Choreo to interact with Arduino and Twitter. When I generate the code from Temboo and try to verify it in Arduino IDE I get these errors. UserTimeline_Twitter.ino: In function 'void…
0
votes
1 answer

Post a message with special characters on Facebook through Temboo

In my Android app I use the Temboo library to post on user's Facebook wall. Everything is OK except when the message contains non-ASCII characters. For example, if I try to publish the String "Oído", I get on Facebook: "O�do". I suppose I would need…
thelawnmowerman
  • 11,956
  • 2
  • 23
  • 36
0
votes
1 answer

Using Temboo to perform a Facebook 'like' action

I would like to perform 'likes' in Facebook walls (from an Android app) using the Temboo Library, and I see there is a Choreo for this. My problem is that the required parameters are the AccessToken (as usual), and an ObjectID, and I have no idea…
thelawnmowerman
  • 11,956
  • 2
  • 23
  • 36
0
votes
1 answer

Set permissions using Temboo for Facebook API

I am currently developing an app where I have been using temboo to search a user on Facebook. I am able to get the basic results which do not need any additional permissions. But for fields like education history, about_me etc, I need to include…