Hi,
I am a newbie Twitter developer. My application is a widget which also has caching, so that when I cross the limit, I can display did from my cache. It is using:
http://api.twitter.com/1/statuses/user_timeline.json?include_entities=true&include_rts=true&id=<screen_name>
Now as an upgrade to v1.1, I am trying to use:
http://api.twitter.com/1.1/statuses/user_timeline.json?include_entities=true&include_rts=true&id=<screen_name>
But, I am getting the following error:
{“errors”:[{“message”:“Bad Authentication data”,“code”:215}]}
I believe its due to not using oAuth. I am using Asp.net c#. Can someone please how I can send the oauth for authentication before i do the request?
Kindly guide me if I am going the wrong way.
Thank You