2
votes

Hey I'm new to Arduino programming, I was wondering how i can connect my device to store data to parse.com.

I know the REST API Key but not sure one what to do. Any help would be appreciated, and if possible can you provide source code or examples.

Thanks!

1
thats for a GSM shield mine is just an ethernet shield.user3528365
It doesn't matter - the IP stack is independent of the shield, and the Arduino isn't capable of https/sslPaulw11
Not with pure Arduino - you need a non-SSL server somewhere to proxy the message to parse.comPaulw11
do you know of any examples that can help with this?user3528365

1 Answers

3
votes

This is now possible. An Arduino Uno + ethernet shied still can't make HTTP requests, and parse.com still needs HTTPs, but Temboo makes it possible. Here's what you need to do:

  1. Create an account at Temboo.com
  2. Go to the Parse bundle
  3. Find the Choreo you're interested in e.g., UploadFile, and test it out from the Temboo website
  4. Turn on IoT Mode, set up your shield, and use the generated Arduino sketch code to connect your board to Parse.

Here's a blog post about Temboo's Iot Mode - the feature makes all of this possible:

http://blog.temboo.com/post/88573872731/flip-the-switch-and-get-going

I hope this helps.