Reading through how tweet is done in Arduino world, there seems to be two ways:
Use intermediate server to hand off the OAuth heavy lifting http://playground.arduino.cc/Code/TwitterLibrary
This is light weight for Arduino code. But requires 3rd party server or set up your own.
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
Reading through how tweet is done in Arduino world, there seems to be two ways:
Use intermediate server to hand off the OAuth heavy lifting
http://playground.arduino.cc/Code/TwitterLibrary
This is light weight for Arduino code. But requires 3rd party server or set up your own.
Implement OAuth request signing on Arduino
http://www.markkurossi.com/ArduinoTwitter/index.html
Arduino can directly tweet. But the library is big.
Mmm... the second approach is very attractive for independence.
Would getting oauth.js and sha1.js here work on Espruino mean we could do it?
https://code.google.com/p/oauth/source/browse/#svn/code/javascript
I think I just have to give it a try...