[twitter-dev] Re: REST API Rate Limiting

2010-10-14 Thread mihai.fa...@olivestudio.net
Thank you both for the replies. Taylor, I think you just gave me the answer. Yes, I am on a shared hosting and most likely someone else is having another twitter app that he didn't know to limit the requests within an hour(or didn't care). First thing I'll do when I have some spare time will be t

Re: [twitter-dev] Incorrect signature while getting home tweets

2010-10-14 Thread Georgooty varghese
* Now I have removed oauth parameters in query string and added it to HTTP header. * Removed ~ char from auth nonce (reserved chars) Now i got another exception "Could not authenticate you" Could u please help me.. On Thu, Oct 14, 2010 at 7:30 PM, Taylor Singletary < taylorsinglet...@twitter

[twitter-dev] Re: My Tweets, Retweeted

2010-10-14 Thread polomasta
ah thanks! that should do the trick :-) On Oct 14, 5:03 pm, Taylor Singletary wrote: > Take a look athttp://dev.twitter.com/doc/get/statuses/:id/retweeted_by > > Taylor > > On Thu, Oct 14, 2010 at 2:21 PM, polomasta wrote: > > In my application I would like to show "My Tweets, Retweeted" with th

Re: [twitter-dev] My Tweets, Retweeted

2010-10-14 Thread Taylor Singletary
Take a look at http://dev.twitter.com/doc/get/statuses/:id/retweeted_by Taylor On Thu, Oct 14, 2010 at 2:21 PM, polomasta wrote: > In my application I would like to show "My Tweets, Retweeted" with the > rest of the Mentions for a user. (similar to the way they show up in > your mentions column

Re: [twitter-dev] Re: Tweet button-unicode URL

2010-10-14 Thread Matt Harris
Hi, When constructing the Tweet Button HTML you can safely place the unencoded URL into the data-url parameter. The Tweet Button will then handle the encoding for you. You only need to manage the encoding if you are creating the share URL yourself. I've visited your page and found the Tweet Butto

[twitter-dev] My Tweets, Retweeted

2010-10-14 Thread polomasta
In my application I would like to show "My Tweets, Retweeted" with the rest of the Mentions for a user. (similar to the way they show up in your mentions column in tweetdeck) So far I haven't been able to figure out how to do this.. these tweets don't show up via user/mentions. I'm able to retrie

[twitter-dev] Re: can email be accepted when using OAuth?

2010-10-14 Thread Gary
This now works. I can pass the email address in place of screen name. On Oct 5, 2:28 pm, Tom van der Woerdt wrote: > I just did a quick check in my own application, it failed. So, unless > Taylor, Matt or John says otherwise, you should consider the definite > answer to be a No. > > Tom > > On

[twitter-dev] Re: No of statuses extracted by statuses/filter

2010-10-14 Thread AA
Thanks a lot! This is very helpful. John: You said: "If you don't receive a limit message, you know that you've received all possible tweets for the predicate" But: -The only way to get limited in status/filter is using more keywords or more users id than is allowed according to access level? Is

[twitter-dev] Trust Level Failure

2010-10-14 Thread theDisciple
>From my web site, when certain events occur, such as a visitor registers, a news event happens, etc, I need to post the message "Tweet" on Twitter.com. I have written the web application in VB.NET 3.5 using Visual Studio 2008. I added all 4 required values, ConsumerKey, ConsumerSecret, OAuthToken

Re: [twitter-dev] Twitter Call Back for Portal

2010-10-14 Thread Taylor Singletary
Instead of using callback-based OAuth, you may want to consider out-of-band mode OAuth where you prompt the user for a "PIN code" that's provided to the user instead of a callback. Twitter's Matt Harris has done a good job detailing how to work with out of band OAuth: http://github.com/themattharr

[twitter-dev] Re: Tweet button-unicode URL

2010-10-14 Thread Wadja
Anyone...:) On Oct 12, 10:39 am, Wadja wrote: > Hello, > > I am trying to pass this URL(has Greek letters) via Tweetbuttonbut > It always returns ...'url' parameter does not contain a valid URL. > > http://www.wadja.com/petty01#ÅëëçíéêÞ Ïéêïíïìßá > > I've tried all the below using JavaScript but

Re: [twitter-dev] Incorrect signature while getting home tweets

2010-10-14 Thread Taylor Singletary
Without getting to deep into this, some advice: * Use HTTP header based authentication instead of attaching OAuth parameters to the query string. It makes it much more difficult to receive assistance from others when you use query-string based auth and increases the chances of an encoding error ex

Re: [twitter-dev] REST API Rate Limiting

2010-10-14 Thread Taylor Singletary
Are you on an IP address that might be shared with other users? Right now, unauthenticated requests count against your IP addresses's rate limit. If you could log what the X-RateLimit-* HTTP headers indicate at each step, it'd be helpful: status of headers after making your first request, then the

Re: [twitter-dev] REST API Rate Limiting

2010-10-14 Thread Tim Haines
Hey there, Perhaps your IP is blacklisted. Mine was once for a short time. When it was a % of calls were still accepted for some reason. Do you see the same sort of results despite which api call you make? If you do you might want to send a note to a...@twitter.com with your ip address asking th

[twitter-dev] Firewall setting

2010-10-14 Thread Ting
Dear Sir We have twitter app behind firewall. Howerver, we don't allow to open 80 ports to "any" ips. We find the ip address of api.twitter.com is dynamic? Can you tell us what's the ip address of api.twitter.com if we want to open the firewall to api.twitter.com? Or we can use ip address instea

[twitter-dev] REST API Rate Limiting

2010-10-14 Thread mihai.fa...@olivestudio.net
Hello. I have a problem with getting the user_timeline of an user. The limit is to 150 per hour, yet I get blocked at about the 3rd call. I moved my app to 3 different servers, all are working except the server from where it's supposed to be. Searched for a blacklist or something didn't find any

[twitter-dev] Re: Question about source field

2010-10-14 Thread Rich
You wouldn't be able to just 'change' the structure of the source field to something else without a lot of advance notice as it'd break applications that use it already, especially with the structure you suggest there. Maybe the Twitter API team will consider it for a version 2 endpoint though. O

[twitter-dev] Re: Question about source field

2010-10-14 Thread D. Smith
C'mon guys, just admit that you messed up with the source field and correct it. It makes no sense to return html string for any value. Just return the the object with an app name and url, maybe a unique app ID too. On Oct 12, 8:41 pm, "D. Smith" wrote: > I noticed that the value of source field

Re: [twitter-dev] Incorrect signature while getting home tweets

2010-10-14 Thread Georgooty varghese
Before I have implemented a twitter client in C# using xAuth authentication . At that application I have used xauth params for each url signin. Any problem I didn't get. That aclient application works fine. Now I have changed language C# to C. I have used liboauth library. I got oauth_token and

Re: [twitter-dev] Incorrect signature while getting home tweets

2010-10-14 Thread Georgooty varghese
I am waiting for your reply... Base string look like GET&http%3A%2F%2Fapi.twitter.com %2F1%2Fstatuses%2Fhome_ timeline.json&oauth_consumer_key%3DOmTQVOKDomNbrHuuudS 4Q%26oauth_nonce%3DrkocKD.~GoWoUPUGvtdxPdNw4%26oauth_signature_method%3DHMAC-SHA1%26oauth_times