Re: [twitter-dev] Re: How to detect a gap in timeline ?

2011-04-15 Thread Stuart Dallas
On Friday, 15 April 2011 at 01:05, mostafa farghaly wrote: anybody ? Store the last ID you saw, and if you don't get that ID the next time you make a request chances are that you missed some. Simples. -Stuart -- Stuart Dallas 3ft9 Ltd http://3ft9.com/ -- Twitter developer documentation and

[twitter-dev] Invalid signature

2011-04-15 Thread nite21
Hi Guys I am getting an invalid oauth signature error my url is this

[twitter-dev] Re: error 401 failed oauth_signature and token / javascript - qml

2011-04-15 Thread galeyte
I don't have a 401 anymore but i recieve a you are being redirected page, so i can't get my request_token here is my code : function getSignature() { var accessor = { consumerSecret: consumer_secret, tokenSecret: oauth_token_secret }; var message = { method: POST,

[twitter-dev] What I'm doing wrong when trying to retrieve friends timeline with parameters?

2011-04-15 Thread riahut.com
My first request is working and it pretty simple with no extra parameters: http://api.twitter.com/1/statuses/friends_timeline.json application authenticated and I receive about 15 tweets. when make GET with extra parameters: GET /1/statuses/friends_timeline.json?count=50 I getting 401!! pretty

[twitter-dev] failed to validate oauth signature and token

2011-04-15 Thread galeyte
Hi again ! I'm trying to develop a desktop-application javascript based. I'm actually trying to get the request_token from twitter. I'm using OAuth js library, and after testing their examples, i'm trying to do the same thing as

Re: [twitter-dev] where's the REST api documentation?

2011-04-15 Thread Taylor Singletary
Unfortunately the REST API doesn't have a dedicated page linking to each piece of the documentation (though it's something we're going to rectify). The page you linked to, http://dev.twitter.com/doc contains links to each documented resource of the REST API along the right-hand sidebar,

Re: [twitter-dev] Invalid signature

2011-04-15 Thread Taylor Singletary
If you're trying to POST a status update, then you need to use the HTTP POST method. Further, you should place the API-related data in the POST body of the request instead of the query string (in other words, your status=HiAll shouldn't be in the query string). There are many reasons your

[twitter-dev] Re: failed to validate oauth signature and token

2011-04-15 Thread galeyte
Ok, i've checked again and there is some stuff i did not see at first. So now i'm correctly generating my basestring : basestring: POSThttp%3A%2F%2Fapi.twitter.com%2Foauth %2Frequest_tokenoauth_consumer_key%3D[CONSUMER_KEY]%26oauth_nonce

[twitter-dev] My Oauth started failing 2 days ago...

2011-04-15 Thread m36tb6ll
Hi-- Were there any changes on the Oauth implementation/API? I have a web app which is working properly for almost a couple of months already. 2 days ago, it's oauth started to fail. I did not make any modification and found no changes in the impementation. Can anyone please help me out? The

[twitter-dev] Re: Introduce yourself!

2011-04-15 Thread riahut.com
Hi I'm Mykhaylo Lytvynyuk I'm developer of First AIR Twitter client for Blackberry Playbook called TweeKL Please check it here: https://appworld.blackberry.com/webstore/content/34636 Also I developed many other application for Android and PlayBook mostly utilizing AIR 2.6 for mobile. if you

Re: [twitter-dev] Authentication issue

2011-04-15 Thread Taylor Singletary
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 http://twitter.com/episod - Taylor Singletary On Fri, Apr 15, 2011 at 10:23 AM, ap aashish.pa...@gmail.com wrote: Twitter API authentication

[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 aashish.pa...@gmail.com wrote: Twitter API authentication throwing errors on all our sites. Any known issues that are not reflected on your

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

[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

[twitter-dev] Atom API limits

2011-04-15 Thread Jose M Segovia
Hello I am working with Twitter Search and the Atom API and I'm having problems that I will not be solved. The application that I do is to perform content analysis (sociological research) It stores through RSS Atom all Tweets that are made ​​with a specific hastag in a MySQL database. The

[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-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 taylorsinglet...@twitter.com 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

[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 aashish.pa...@gmail.com wrote: This will help you troubleshoot my (hopefully everyone else's) issue: {Code}

[twitter-dev] Re: App title and url do not get updated (twitter website bug)

2011-04-15 Thread Jean-Pierre
Hi Taylor, I'm experiencing the same problem. I changed my application name url last week but status update sent from my application still reports it's from my old application name. Do you have an idea of when this bug will be fixed ? Regards, JP. On Mar 18, 4:00 pm, Taylor Singletary

[twitter-dev] Looking for Sina Weibo ppl - chinese Twitter

2011-04-15 Thread Joost Zuurbier
Hey guys, My name is Joost from Dot TK. We know everything about Twitter, about their API, about 3rd party applications and all that. But we don't know anything about Sina's Weibo (the Chinese Twitter equivalent). We want to learn. Is there someone in the bayarea that can, on consultancy

[twitter-dev] Repeated connection request

2011-04-15 Thread Konstantin
Hello! We are trying to implement the sign in with twitter button...we can successfully connect a twitter account and be redirected back to our site. But if a user comes back to our site who has already authorized our application and clicks the sign in with twitter button, they have to go through

Re: [twitter-dev] Repeated connection request

2011-04-15 Thread Taylor Singletary
Hi Konstantin, Can you share the URL you're using for step 3? Is it api.twitter.com/oauth/authorize or is it api.twitter.com/oauth/authenticate? @episod http://twitter.com/episod - Taylor Singletary On Fri, Apr 15, 2011 at 12:07 PM, Konstantin rasf...@gmail.com wrote: Hello! We are trying

[twitter-dev] Re: Repeated connection request

2011-04-15 Thread m36tb6ll
Did you save the access tokens of each user and use them whenever a user log-in to your site/app? If not, then they will be asked to allow the app everytime they login to your site. Hope this helps... On Apr 16, 3:07 am, Konstantin rasf...@gmail.com wrote: Hello! We are trying to implement

Re: [twitter-dev] Re: App title and url do not get updated (twitter website bug)

2011-04-15 Thread Taylor Singletary
Hi Jean-Pierre, We believe we fixed this bug recently -- can you change the fields again and observe with a subsequent tweet whether this updates within 10 minutes now? If it still isn't updating, can you send me a private email ( epi...@twitter.com ) with your consumer key or application ID?

[twitter-dev] Trends.json Errors

2011-04-15 Thread MartinW
http://search.twitter.com/trends.json has just started erroring in the last 24 hours. It now returns a 404. Could someone please advise on an updated URL. Thanks Martin -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter:

Re: [twitter-dev] Trends.json Errors

2011-04-15 Thread Taylor Singletary
Hi Martin, You can find out more about the new home of the trends API here: http://groups.google.com/group/twitter-development-talk/browse_thread/thread/bec060db85d8cf72/94028785c6283c48?hl=en_US(April 2010), and

[twitter-dev] Anywhere Twitter API Problem on IE8 , it's blocked for some reason . . .

2011-04-15 Thread Shehabic
Hi , I have a problem with Anywhere plugin on IE8 please test the following URL on IE8 http://social.megaplugins.com/all# and you click the twitter icon an alert with Clicked will be shown then twitter's popup will appear when I enter user pass and accept the application's access nothing

[twitter-dev] Anywhere Twitter API Problem on IE8 , it's blocked for a Known reason

2011-04-15 Thread Shehabic
This part doesn't work on IE8 if(dd.parent.twttr) -- This is where access is denied for the JS API From what I know in IE8 a popup can't communicate with an opener document except with Proxy funciton i.e. window.opener.runFuncitonName( ) where runFunctionName is

[twitter-dev] Re: Anywhere Twitter API Problem on IE8 , it's blocked for a Known reason

2011-04-15 Thread Shehabic
I Found out that this happens if FBConnect JS is present at the same page . . . On Apr 16, 2:49 am, Shehabic sheha...@gmail.com wrote: This part doesn't work on IE8 if(dd.parent.twttr)           -- This is where access is denied for the JS API From what I know in

[twitter-dev] Re: Repeated connection request

2011-04-15 Thread Konstantin
I can save access_token, but how can I use it later? A user doesn't enter any information (login, email, etc), so I cannot get his access_token from the database. A user may login to Twitter under different accounts or may use another computer, so I cannot use cookies too. A user just clicks Sign

[twitter-dev] How to get the number of pages in user's timeline

2011-04-15 Thread ToddySM
Hi, I would like to iterate the timeline in chronological order which means I need to start from the last page in the timeline (or the one that has the oldest tweets) but I don't see any way to get the number of pages in user's timeline. I could always try to start with page 16 (16x200 statuses =