Closed GoogleCodeExporter closed 9 years ago
found and fixed.. please close this issue.
Twitter have terminated version 1 of there apis, and twitterwrapper.cs was
still holding reference to old api.. that was causing it to throw error 410
fix: change twitterwrapper.cs as below
change following line
public override string ProfileEndpoint { get { return
"http://api.twitter.com/1/users/show.json"; } }
public override string ContactsEndpoint { get { return "http://api.twitter.com/1/friends/ids.json?screen_name={0}&cursor=-1"; } }
to point to api version 1.1
public override string ProfileEndpoint { get { return
"http://api.twitter.com/1.1/users/show.json"; } }
public override string ContactsEndpoint { get { return "http://api.twitter.com/1.1/friends/ids.json?screen_name={0}&cursor=-1"; } }
Original comment by vishal.a...@gmail.com
on 15 Jun 2013 at 5:51
This was resolved in 2.4
Original comment by deepak.a...@3pillarglobal.com
on 21 Oct 2013 at 10:37
Original issue reported on code.google.com by
vishal.a...@gmail.com
on 15 Jun 2013 at 7:54