Hardik Patel
Hardik Patel

Reputation: 937

Twitter API not working

issue during implementing twitter API. when i send a request using http://twitter.com/statuses/friends_timeline.xml

i got a message Basic authentication is not supported

Can anyone provide me some sample examples of implementing twitter api.?

Upvotes: 0

Views: 359

Answers (1)

Zain Shaikh
Zain Shaikh

Reputation: 6043

twitter no more supports basic authentication, you'll have to implement OAuth authentication in order to retrieve secure data from twitter.

here is an article to help you getting started with twitter OAuth in C# and iPhone respectively

http://www.voiceoftech.com/swhitley/?p=681

https://github.com/bengottlieb/Twitter-OAuth-iPhone

Upvotes: 1

Related Questions