[twitter-dev] Re: Search API Optional lang Has Problem.

2010-11-29 Thread fbparis
Same here. On Nov 29, 1:50 am, Jeong Hoon Kim redi...@gmail.com wrote: About 5 days ago, Suddenly Search API Optional lang had no results..My optional lang is ko. Did anybody apply Search API lang option? Did the results come out correctly? -- Twitter developer documentation and resources:

[twitter-dev] Re: Search API Optional lang Has Problem.

2010-11-29 Thread fbparis
And same with some search operators (like source:xxx) Sorry for posting twice :) On Nov 29, 1:50 am, Jeong Hoon Kim redi...@gmail.com wrote: About 5 days ago, Suddenly Search API Optional lang had no results..My optional lang is ko. Did anybody apply Search API lang option? Did the results

[twitter-dev] Re: twitter_tweets_are_not_updating_in_my_site

2010-11-29 Thread bujji
hi i am facing this problem from past one week before it was working fine i have not changed any code . when i checked the log file it is showing fetching tweets from twitter and shows latest fetched tweets id but it is not saving to database ,to save data it has to enter in to the loop where

[twitter-dev] Location returning no results

2010-11-29 Thread bounder
I use Abraham Williams's Twitteroauth https://github.com/abraham/twitteroauth to search for Tweets near a location (for http://twitter.com/#!/birminghamuk) but in the last few days it has started returning no results. Similarly search.Twitter.com is returning no results for any search near a

[twitter-dev] Re: Twitter API

2010-11-29 Thread Tom Callahan
Thank you very muchit worked :-) Can you also please help me in more thing : How can I fetch the tweet replies from somebody's account? On Nov 28, 6:22 pm, Igor Kharin igorkha...@gmail.com wrote: Here's how Sign in with Twitter button

Re: [twitter-dev] Re: Twitter API

2010-11-29 Thread Igor Kharin
Once you authorized an user and got his access token you're free to use all the API methods like statuses/mentions (replies): http://dev.twitter.com/doc/get/statuses/mentions Good luck! On Mon, Nov 29, 2010 at 5:35 PM, Tom Callahan skmajumder...@gmail.com wrote: Thank you very muchit worked

Re: [twitter-dev] Where can I find the updated rate limit after OAuth?

2010-11-29 Thread Igor Kharin
All rate limited methods responses include X-Ratelimit-Remaining and X-Ratelimit-Limit HTTP-headers, use them or http://dev.twitter.com/doc/get/account/rate_limit_status On Fri, Nov 26, 2010 at 1:55 PM, m36tb6ll raeste...@gmail.com wrote: Hi! I am a newbie in the field and am working on my

Re: [twitter-dev] RE: Spam Tweets

2010-11-29 Thread Ray of Los Angeles
Awesome, thanks EH. On Nov 29, 2010, at 1:38 AM, Edward Hotchkiss wrote: id_str iteration. On Nov 27, 2010, at 9:43 AM, TweetzMatter wrote: Anyones valid answer is appreciated: How is it that moments after opening a twitter account, 2 or 3 'spam' followers have already found it? Drives

Re: [twitter-dev] Re: Geocoded searches broken

2010-11-29 Thread Judotens Budiarto
This happened in my script too. Try to put since=2010-11-29 (today stamp) in your url request might solve the problem On Mon, Nov 29, 2010 at 6:56 AM, bob.hitching b...@hitching.net wrote: seeing the same problem on http://geome.me, for example -

Re: [twitter-dev] Re: Geocoded searches broken

2010-11-29 Thread Taylor Singletary
Hi all, We're working to fix this issue as quickly as we can. Thanks for all the great examples. Taylor On Mon, Nov 29, 2010 at 1:11 AM, Judotens Budiarto judot...@gmail.comwrote: This happened in my script too. Try to put since=2010-11-29 (today stamp) in your url request might solve the

[twitter-dev] delimited (streaming API) now default?

2010-11-29 Thread ianrose
It appears to me that when using the statuses/filter streaming API method, elements are not length-delimited by default, even if you don't specify ?delimited=length. And if you DO add ? delimited=length, you get double length fields. For example: if I query

[twitter-dev] RT and mentions

2010-11-29 Thread radu ungurean
Hello, I need a way to bring all retweets of a tweet and all mentions of a twitter username. Please help. Basically what I need is to get the count of the retweets, and count of mentions. Radu -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via

Re: [twitter-dev] delimited (streaming API) now default?

2010-11-29 Thread Matt Harris
Hey, I haven't been able to reproduce this using my Streaming API library. When delimited=length is sent as a parameter we will include the number of bytes (in decimal) for the object being sent. What I did notice is that 0x6EF = 1775 and 0x710 = 1808 -- in both cases the Hex values are 6 bytes

Re: [twitter-dev] Re: include_entities option for search API

2010-11-29 Thread Matt Harris
Thanks for the suggestion. Entities in Search has been added to our Enhancement requests list. You can add your vote for this feature by staring it. http://code.google.com/p/twitter-api/issues/detail?id=1967 We do not have a timeline for when this feature could be added so I recommend you

Re: [twitter-dev] collecting tweet message ids

2010-11-29 Thread Matt Harris
Hi Rajinder. The user_timeline returns upto 200 statuses per page starting with the most recent. To retrieve a complete page of 200 you will want to make a request similar to: http://api.twitter.com/1/statuses/user_timeline.json?count=200\include_rts=1 This request will return upto the most

Re: [twitter-dev] Error creating tweets by API

2010-11-29 Thread Matt Harris
Hi Luis, So we can help you can you post the API request and response body. It maybe you have something wrong with your character encoding. I'm looking for information such including your OAuth Basestring and POST parameters. Best @themattharris Developer Advocate, Twitter

Re: [twitter-dev] Where can I find the updated rate limit after OAuth?

2010-11-29 Thread Randolph Estebat
Thanks for the reply, Igor... Yes it should be. The problem is that the headers are giving me the limit 150 rather than the expected 350 after OAuth. Any ideas why this is the case? Thanks again. On Mon, Nov 29, 2010 at 8:17 PM, Igor Kharin igorkha...@gmail.com wrote: All rate limited

[twitter-dev] Re: Search API Optional lang Has Problem.

2010-11-29 Thread Randomness
Same problem here. When lang=all is used I am getting results. When a language is specified I get zero results most of the time, while in some cases I do get a result. Seems very strange. On Nov 29, 9:25 am, fbparis fbou...@gmail.com wrote: And same with some search operators (like source:xxx)

Re: [twitter-dev] Re: Search API Optional lang Has Problem.

2010-11-29 Thread Hayes Davis
I'm seeing this as well. Including filter:links or setting that language causes the search to fail. I get an error message saying since_id has been adjusted due to a temporary error. I'm *not* including a since_id in the search parameters. Hayes On Mon, Nov 29, 2010 at 10:08 AM, Randomness

Re: [twitter-dev] Where can I find the updated rate limit after OAuth?

2010-11-29 Thread Taylor Singletary
There are some API methods that don't have the concept of an unauthenticated user -- these public-only resources will not consider OAuth credentials when calculating the rate limit. We are looking to make the application of rate limiting across resources, regardless of whether the resource expects

[twitter-dev] Re: lang=en queries to search API not working

2010-11-29 Thread clichekiller
This has been a problem for some time now, is nothing be done to address it? The since fix isn't great because anything outside of that five to six day window will not be returned. On Nov 28, 5:23 am, MartinW wright.mar...@gmail.com wrote: Hi Steve, I've found the same problem over the past

[twitter-dev] API call for Replying a tweet

2010-11-29 Thread avinash
Hi, I'm building a website where i want authenticated twitter users to reply to their tweets. Here are the details, in my website i have users who get authenticated from twitter end via OAuth. I then fetch their timelines. Now what i want to implement is that users should be able to reply to the

[twitter-dev] Re: Search API Optional lang Has Problem.

2010-11-29 Thread clichekiller
This has happened before. Appending a since clause works around it, but limits your search results to only five days. Also last time this happened they fixed it within a few weeks. I just wish we could get an official comment on this. On Nov 28, 5:50 pm, Jeong Hoon Kim redi...@gmail.com wrote:

[twitter-dev] Re: randomly 401 error

2010-11-29 Thread themattharris
Hi Alvin, The error in that response tells me your signature is incorrect. Double check you are generating your signature using the algorithm described here: http://dev.twitter.com/auth#signing-requests In particular I notice the parameters in your GET request are not in lexicographical

Re: [twitter-dev] collecting tweet message ids

2010-11-29 Thread Rajinder Yadav
On Mon, Nov 29, 2010 at 12:27 PM, Matt Harris thematthar...@twitter.com wrote: Hi Rajinder. The user_timeline returns upto 200 statuses per page starting with the most recent. To retrieve a complete page of 200 you will want to make a request similar to:

[twitter-dev] Re: Where can I find the updated rate limit after OAuth?

2010-11-29 Thread m36tb6ll
Thanks for the reply, Taylor... Are the API requests statuses/followers and statuses/friends included in the public-only resources that you are referring to? Or, I'm I not making any sense? :) Randolph On Nov 30, 2:19 am, Taylor Singletary taylorsinglet...@twitter.com wrote: There are some

Re: [twitter-dev] Re: Where can I find the updated rate limit after OAuth?

2010-11-29 Thread Taylor Singletary
statuses/followers and statuses/friends don't require authentication and are likely subject to this condition. When calling these resources, are you explicitly providing the user_id or screen_name? These methods are some of the oldest offered in the API and aren't really the best choices for

[twitter-dev] Getting tweets from users following a particular user

2010-11-29 Thread Louis
I'd like to stream tweets from the set of users which follow a specific user. Is there a way to do this directly, or a way to get a list of such users, so I can then specify to filter tweets from them only? -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates

Re: [twitter-dev] Getting tweets from users following a particular user

2010-11-29 Thread M. Edward (Ed) Borasky
Quoting Louis louis...@gmail.com: I'd like to stream tweets from the set of users which follow a specific user. Is there a way to do this directly, or a way to get a list of such users, so I can then specify to filter tweets from them only? It depends on how many followers the user has. Up to

[twitter-dev] Re: Search API Optional lang Has Problem.

2010-11-29 Thread redevries
There is an issue with Twitter's language detection. When specifying a language (lang=nl) , there is no result, when using lang=all, I do get results, in my language. Using lang=all gives us so many results, that we're hitting the rate limits with lots of stuff we're throwing away straight away

[twitter-dev] Re: lang=en queries to search API not working

2010-11-29 Thread Naveen
Also seems to happen with the geocode parameter, adding a since_id makes the results return but we should not be able to that. On Nov 29, 10:22 am, clichekiller clichekil...@gmail.com wrote: This has been a problem for some time now, is nothing be done to address it?  The since fix isn't great

Re: [twitter-dev] Re: lang=en queries to search API not working

2010-11-29 Thread Matt Harris
Thanks for the all the information you have collected. The team is investigating this issue and we'll let you know as soon as they have some news. Thanks for bearing with us, @themattharris Developer Advocate, Twitter http://twitter.com/themattharris On Mon, Nov 29, 2010 at 1:56 PM, Naveen

Re: [twitter-dev] collecting tweet message ids

2010-11-29 Thread Matt Harris
Hi Rajinder, We would really like to offer access to the historical timeline but our infrastructure doesn't allow access to anymore than 3200 right now. The Tweets are safe and have not been deleted or lost, they are just not available. We also don't have a timeline for access to historical

Re: [twitter-dev] Trends data not updating for woeid = 4118 (Toronto) since Nov 22

2010-11-29 Thread Matt Harris
Hi Ian, Thanks for letting us know about this. The team found an issue in the code and have been working on a fix. You should see the trends updated over the next few hours (if they aren't already). Best, @themattharris Developer Advocate, Twitter http://twitter.com/themattharris On Fri, Nov

[twitter-dev] Authenticating with $_SESSION['oauth']['oauth_token'] and $_SESSION['oauth']['oauth_token_secret'] returns Request token must be exchanged for an access token before use

2010-11-29 Thread Tobias C. Jensen
Hi guys. I'm trying to authenticate with the tmhOAuth PHP class by Matt Harris. I'm using $_SESSION['oauth']['oauth_token'] as 'user_token' and $_SESSION['oauth']['oauth_token_secret'] as 'user_secret'. But when I try to verify_credentials it returns the error:

[twitter-dev] Re: lang=en queries to search API not working

2010-11-29 Thread Tod
We are seeing the same problem. RSS feeds with lang=en stopped working ~2 days ago (they were working prior). Tod On Nov 29, 5:02 pm, Matt Harris thematthar...@twitter.com wrote: Thanks for the all the information you have collected. The team is investigating this issue and we'll let you know

[twitter-dev] Re: lang=en queries to search API not working

2010-11-29 Thread Tom Park
We are seeing the same problem. RSS feeds with lang=en stopped working ~2 days ago (they were working prior). It appears if you use iso_language_code=en then it works. -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter:

[twitter-dev] cancel follow request

2010-11-29 Thread mostafa farghaly
Hi, Canceling outgoing follow request works fine on twitter.com by: http://api.twitter.com/1/friendships/cancel.json but calling it from the API return: The server understood the request, but is refusing to fulfill it. could you please allow us to cancel outgoing follow request from the API.

[twitter-dev] Best scalable method to process mentions

2010-11-29 Thread Serdar
Hi I have just launched my first twitter application. Basically: -People send a tweet that mentions @appName (authorizing not needed) -App checks for new @appName mentions *from time to time*, and process them. There is a max mentions limit (200) that can be retrieved at a time via API. I know

[twitter-dev] Re: Getting tweets from users following a particular user

2010-11-29 Thread Louis
I was under the impression that using 'follow' simply returns tweets or retweets which were originally created by, or were in reply to, a specific user - I'm interested in getting *any* tweet from all users following this special user (sampled possibly). For example, I could use it to see what

[twitter-dev] Re: Authenticating with $_SESSION['oauth']['oauth_token'] and $_SESSION['oauth']['oauth_token_secret'] returns Request token must be exchanged for an access token before use

2010-11-29 Thread Tobias C. Jensen
Never mind, problem solved. Dumb question! :) On 29 Nov., 23:41, Tobias C. Jensen 2bia...@gmail.com wrote: Hi guys. I'm trying to authenticate with the tmhOAuth PHP class by Matt Harris. I'm using $_SESSION['oauth']['oauth_token'] as 'user_token' and $_SESSION['oauth']['oauth_token_secret']

Re: [twitter-dev] Re: Authenticating with $_SESSION['oauth']['oauth_token'] and $_SESSION['oauth']['oauth_token_secret'] returns Request token must be exchanged for an access token before use

2010-11-29 Thread Matt Harris
Tobias, No problem. Glad you got it working. Best, @themattharris Developer Advocate, Twitter http://twitter.com/themattharris On Mon, Nov 29, 2010 at 4:55 PM, Tobias C. Jensen 2bia...@gmail.com wrote: Never mind, problem solved. Dumb question! :) On 29 Nov., 23:41, Tobias C. Jensen

[twitter-dev] Re: Getting tweets from users following a particular user

2010-11-29 Thread fbparis
Simply create an account to follow them :) Or make a list... On Nov 30, 1:51 am, Louis louis...@gmail.com wrote: I was under the impression that using 'follow' simply returns tweets or retweets which were originally created by, or were in reply to, a specific user - I'm interested in getting

[twitter-dev] Re: Best scalable method to process mentions

2010-11-29 Thread fbparis
I guess you should use the stream api to get mentions in real time. No need to process it directly, you could code a simple client connected to the stream api which record new mention in database, then launch your script time to time and get the mentions via the database rather than via the

[twitter-dev] Differences between trends and trends/current??

2010-11-29 Thread M. Edward (Ed) Borasky
I'm starting to write some code that uses the trends portions of the API. I notice that there are two similar endpoints, 'GET trends and GET trends/current. They look pretty much alike in the documentation, except for a minor format difference in the returned JSON. However, if I actually

[twitter-dev] Search with Geocode

2010-11-29 Thread Daniel
I have problems trying making queries as: http://search.twitter.com/search.json?geocode=37.781157,-122.398720,1mi The results allways: {results:[],max_id:9449483417488384,since_id: 9449483417488384,refresh_url:? since_id=9449483417488384q=,results_per_page:15,page:

[twitter-dev] oAuth reporting a status update error when none exists

2010-11-29 Thread EastSideDev
I have an application that uses oAuth to post a tweet on behalf of a user. I noticed today that when I do a status update, I'm getting a Status is a duplicate error message, when in fact the status posted correctly. I have not changed my code, and I am using the Twitter oAuth library (same code

Re: [twitter-dev] Re: How do I find the URL of a Twitter user WWW page, having only their twitterID?

2010-11-29 Thread Abraham Williams
As I said in my email it was the second tip listed from the link. https://twitter.com/account/redirect_by_id?id=9436992 Abraham - Abraham Williams | Hacker Advocate | abrah.am @abraham https://twitter.com/abraham | github.com/abraham | blog.abrah.am This email is: [ ] shareable [x]

Re: [twitter-dev] Introducing Qwerly API (shameless plug)

2010-11-29 Thread Abraham Williams
Nice job Max. It was very accurate for my profile. Abraham - Abraham Williams | Hacker Advocate | abrah.am @abraham https://twitter.com/abraham | github.com/abraham | blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private. On Sat, Nov 20, 2010 at 08:19, Max

[twitter-dev] Re: Twitter API

2010-11-29 Thread Tom Callahan
I have one question here... I know that we can fetch the recent posts from a user's account, however is it possible to fetch replies to a particular tweet? Please guide me on that. Thanks in advance!!! On Nov 29, 5:10 pm, Igor Kharin igorkha...@gmail.com wrote: Once you authorized an user and

Re: [twitter-dev] oAuth reporting a status update error when none exists

2010-11-29 Thread Abraham Williams
It sound to me like your code might be making the same API request twice. This would result in the status getting posted and the error message you end up with. If you are commonly creating statuses with the same text it might just seem like a new status is getting posted when they are not.

Re: [twitter-dev] Problem - SSL CA cert

2010-11-29 Thread Georgooty varghese
Dear Twitter, I wont be able to log in to twitter insecure using twitter(using curl command line tool, you disable this with -k/--insecure). But facebook has no problem. Why this? I think that client need a certifuication? Is it right? Anybody please help me? I am waiting for your reply.

[twitter-dev] Re: oAuth reporting a status update error when none exists

2010-11-29 Thread EastSideDev
I double-checked my code, and I'm only calling statuses/update once: $connection = new TwitterOAuth($ctck, $ctcks, $ot,$ots); $opResult = $connection-post('statuses/update', array('status' = $statusUpdate), TRUE); if (!$opResult['id']) { $msgText .=