Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I post a message to twitter using only javascript (no serverside authentification).

For example I have a form with username, password, and a text field and a submit button.

I want to use it on the backend of a website.

I have read this, http://dev.twitter.com/doc/post/statuses/update but I do not know how to handle the authentification of the username.

(I know that it involves many security risks doing it this way)

share|improve this question
3  
Note that the username/password based API will be shut down in some days. You should look into using OAuth instead. – Scytale Aug 12 '10 at 11:06

3 Answers

up vote 1 down vote accepted

either use the javascript twitter api helper at http://sources.disruptive-innovations.com/twitterHelper/tags/latest/TwitterHelper.html

or the far easier way is to use the @anywhere api from twitter (http://dev.twitter.com/anywhere/begin)

share|improve this answer
I have already tried twitterhelper but there is also a problem with the authentification I think. I get unauthorised as the response. And some parameters are not really explained. Do you have an example to it? – user350005 Aug 12 '10 at 12:03
\@anywhere is now deprecated. See the Sunsetting \@Anywhere post: dev.twitter.com/blog/sunsetting-anywhere – Geoff May 8 at 16:26

Thanks @Nikolaus Gradwohl!

I made a little example for myself.

https://gist.github.com/2844705

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.