Re: [twitter-dev] Re: Authentication issue

2011-04-18 Thread Taylor Singletary
Hi There, Not sure what programming language or library you're working with, but I recommend getting familiar with the REST API itself so that you better understand the API that is providing you data rather than just the view presented by the API of the library you're using. Yes, the Twitter API

[twitter-dev] Re: Authentication issue

2011-04-18 Thread ap
I found this method that returns the currently authenticated users' object: authenticatedUser = twitter.verifyCredentials(); Is it safe to use to get the "name" of this authenticatedUser? Any advise, greatly appreciated! On Apr 18, 10:03 am, ap wrote: > Any updates? > >

[twitter-dev] Re: Authentication issue

2011-04-18 Thread ap
Any updates? On Apr 15, 2:01 pm, ap wrote: > I guess, essentially my question is: whats the best method to use to > get a Twitter User back, more specifically, the Twitter users' first > name and last name. > > On Apr 15, 1:53 pm, ap wrote: > > > > > > > > > This will help you troubleshoot my (h

[twitter-dev] Re: Authentication issue

2011-04-15 Thread ap
I guess, essentially my question is: whats the best method to use to get a Twitter User back, more specifically, the Twitter users' first name and last name. On Apr 15, 1:53 pm, ap wrote: > This will help you troubleshoot my (hopefully everyone else's) issue: > > {Code} > TwitterFactory factory =

[twitter-dev] Re: Authentication issue

2011-04-15 Thread m36tb6ll
Hi- same issue here... seems like the tokens are not matching.. On Apr 16, 1:28 am, Taylor Singletary wrote: > What kind of errors are you seeing? Do you have an example of the status > code and body message? What specific endpoints throw the error? > > @episod - Ta

[twitter-dev] Re: Authentication issue

2011-04-15 Thread ap
This will help you troubleshoot my (hopefully everyone else's) issue: {Code} TwitterFactory factory = new TwitterFactory(); // Good Twitter twitter = factory.getInstance(); // Good authenticatedUser = twitter.showUser("273610984"); // Throws errors {Code} {Errors} Twitter{auth='OAuthAuthorizatio

[twitter-dev] Re: Authentication issue

2011-04-15 Thread m36tb6ll
Hi Taylor-- I'm not much of a programmer but if it would help, the problem is occurring after hitting ALLOW. I'm using Sachin Khosla (@realin) TwitterAPI wrapper class -- it was using twitter.com/oauth which was not a problem until 2 days ago. I already changed it to api.twitter.com/oauth but t

Re: [twitter-dev] Re: Authentication issue

2011-04-15 Thread Taylor Singletary
If you can provide some more details, I can investigate possible issues. What parts of the requests are failing? There are many steps involved, so localizing to the specific areas where you're having problems will be very useful. Make sure that when using OAuth, you're using api.twitter.com/oauth/

[twitter-dev] Re: Authentication issue

2011-04-15 Thread m36tb6ll
Hi Ashish -- I'm experiencing the same thing which started 2 days ago. I hope someone can give us an idea on what's going on-- On Apr 16, 1:23 am, ap wrote: > Twitter API authentication throwing errors on all our sites. Any known > issues that are not reflected on your API Status page? > > Tha