[twitter-dev] Your opinion about a twitter search filtering procedure.

2009-12-29 Thread humbucker
Hello, As I would like to display only the tweets from my followers, I thought this solution could do the trick http://search.twitter.com/search.atom?q=(searchTerm)from=(followerID1)+OR+(followerID2)+OR+ ... What's your opinion keeping in mind I will maybe one day have 500 followers or more

Re: [twitter-dev] Twitter Developer QA on Stack Overflow

2009-12-29 Thread Jonathan Markwell
Hi Ken, Andrew, Thank you for your thoughts! I had considered a Stack Exchange and have set up a couple of experimental QA communities using it. After the seeing what the Android and Adbobe teams are doing I think it makes much more sense to keep the programming discussion in one place on and

Re: [twitter-dev] Twitter Developer QA on Stack Overflow

2009-12-29 Thread Zac Bowling
Basic questions get answered usually here just as long as they are not obvious questions on the Wiki. :-) Stack Overflow has a lot of overflow (no pun) with other development communities. You see a lot of questions around how to use the twitter API with specific languages or frameworks on Stack

Re: [twitter-dev] Your opinion about a twitter search filtering procedure.

2009-12-29 Thread Raffi Krikorian
why not just use http://apiwiki.twitter.com/Twitter-REST-API-Method%3A-statuses%C2%A0followers ? On Tue, Dec 29, 2009 at 2:50 AM, humbucker oursystemfai...@gmail.comwrote: Hello, As I would like to display only the tweets from my followers, I thought this solution could do the trick

[twitter-dev] Re: Your opinion about a twitter search filtering procedure.

2009-12-29 Thread humbucker
because this syntax doesnt allow me to perfoarm a search in it, that will list all my followers status and information only... wrong? On 29 déc, 14:35, Raffi Krikorian ra...@twitter.com wrote: why not just usehttp://apiwiki.twitter.com/Twitter-REST-API-Method%3A-statuses%C2%A0f... ? On Tue,

Re: [twitter-dev] Re: Your opinion about a twitter search filtering procedure.

2009-12-29 Thread Raffi Krikorian
true - searching through all your followers is going to be untenable pretty quickly if you are using the twitter search API, however. you may need to just get all the tweets from your followers, and then do the search yourself... On Tue, Dec 29, 2009 at 5:37 AM, humbucker

[twitter-dev] Tranform created_at to timezone

2009-12-29 Thread invadermedia
I want to change the tweet created_at time from the xml that I retrieve from user_timeline to adjust to the correct time for it's timezone. I'm guessing I have to use xslt fn:adjust-date-to-timezone. Does anyone have any recommendations?

[twitter-dev] Ambiguity with 401 error response code

2009-12-29 Thread Eric Marcoullier @ Gnip
We're trying to build some logic into our data collector and we've been fighting with an issue for a while involving the 401 Unauthorized error code. There are two instances where I can get this response 1) Bad credentials. I try to log in with an invalid username or password. 2) I don't have

Re: [twitter-dev] Twitter Developer QA on Stack Overflow

2009-12-29 Thread Jonathan Markwell
Hi Zac, These are some great points! On Tue, Dec 29, 2009 at 1:01 PM, Zac Bowling zbowl...@gmail.com wrote: Basic questions get answered usually here just as long as they are not obvious questions on the Wiki. :-) That doesn't really mean they shouldn't be answered at all. If new members of

[twitter-dev] Re: Your opinion about a twitter search filtering procedure.

2009-12-29 Thread humbucker
Raffi, Right, that's exactly what I'm trying to do with Curl and Php, everything works if I want to list timeline, @replies but nothing show up about the followers... Check my post : http://groups.google.com/group/twitter-development-talk/browse_thread/thread/33cc308a59ecb43a Really strange

[twitter-dev] Re: Can't retrieve latest followers's tweets

2009-12-29 Thread humbucker
Ok I've found, the generated xml is not organizeed the same way, instead of statusesstatus...it's usersusers Cheers! On 29 déc, 14:35, humbucker oursystemfai...@gmail.com wrote: Hi! The code below just produce a blank result when trying to list my followers's latest tweet N.B. It's working

[twitter-dev] Re: Your opinion about a twitter search filtering procedure.

2009-12-29 Thread humbucker
Solved, answer is in the post if other people got the same question On 29 déc, 15:54, humbucker oursystemfai...@gmail.com wrote: Raffi, Right, that's exactly what I'm trying to do with Curl and Php, everything works if I want to list timeline, @replies but nothing show up about the

[twitter-dev] Streaming API Client DNS TTL issue

2009-12-29 Thread John Kalucki
I've noticed a handful of Twitter Streaming API clients that are not honoring the DNS Time To Live (TTL). If your client is currently connected to 128.121.146.231, you certainly have an issue with ignoring the TTL. If you have restarted your client in the last few weeks, but are connected to

Re: [twitter-dev] Ambiguity with 401 error response code

2009-12-29 Thread Raffi Krikorian
hi eric. yup - you've hit it right on the head. one of the main initiatives in us starting to version our API is so that we can really consolidate and make our error codes consistent. unfortunately, for legacy compatibility reasons, we can't change the second case to have a 402 error and we

[twitter-dev] Re: Rate limited on search query

2009-12-29 Thread Brian Sutorius
Your IP and username are probably whitelisted for the REST API, which does not cover search queries. For more information, see http://apiwiki.twitter.com/Rate-limiting . To request whitelisting for the Search API, please write to a...@twitter.com with a link to your application and a brief

[twitter-dev] Re: Rate limited on search query

2009-12-29 Thread netlatch
Thanks Brian On Dec 29, 1:40 pm, Brian Sutorius bsutor...@twitter.com wrote: Your IP and username are probably whitelisted for the REST API, which does not cover search queries. For more information, seehttp://apiwiki.twitter.com/Rate-limiting. To request whitelisting for the Search API,

[twitter-dev] Re: oAuth Authenticate vs. Authorize (force_login)

2009-12-29 Thread Aaron Rankin
Does authenticate actually authorize the app to perform operations on behalf of the user? My understanding is the user must first authorize the app and then the app can send them through authenticate in the future as a login check. If the user never approves the app in an authorize operation, I

Re: [twitter-dev] Ambiguity with 401 error response code

2009-12-29 Thread Isaiah Carew
Are there other error conditions that are similarly ganged up into 401? Or are these two the complete list? Are there other codes that have similarly ganged up error conditions that can only be distinguished by the response text? Are the expected responses (not just the codes) for

[twitter-dev] Twitter Truncation

2009-12-29 Thread akademicjeanius
Just wondering, when did Twitter decide to stop truncating API tweets over 140 characters and just toss them out completely? This has bitten me in the a**.

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

2009-12-29 Thread varnie
Good day. I've solved my issue. One more question - are there any ways to get authorization without having to use the browser? if you're awared of any solutions please let me know, thanks.

[twitter-dev] Re: Ambiguity with 401 error response code

2009-12-29 Thread Eric Marcoullier @ Gnip
Heya, this will definitely work for now. Thanks for the good idea. Eric On Dec 29, 10:45 am, Raffi Krikorian ra...@twitter.com wrote: hi eric. yup - you've hit it right on the head.  one of the main initiatives in us starting to version our API is so that we can really consolidate and make

Re: [twitter-dev] Ambiguity with 401 error response code

2009-12-29 Thread Raffi Krikorian
uhh. i can't guarantee this is an exhaustive list, but off the top of my head i think those are the two that developers will normally see in the 401. On Tue, Dec 29, 2009 at 12:36 PM, Isaiah Carew isa...@mac.com wrote: Are there other error conditions that are similarly ganged up into

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

2009-12-29 Thread Raffi Krikorian
not right now. i have to emphasize, the reason the browser is a good thing is that the user can see that he is not giving his twitter password to your application. On Tue, Dec 29, 2009 at 10:46 AM, varnie varnie...@mail.ru wrote: Good day. I've solved my issue. One more question - are there

Re: [twitter-dev] Twitter Truncation

2009-12-29 Thread Raffi Krikorian
hi - its (fortunately/unfortunately) been like that for a few months. its high on my list to throw an error when that occurs, and i'm sorry it hasn't been done yet. On Tue, Dec 29, 2009 at 12:19 PM, akademicjeanius enkwiringmi...@gmail.comwrote: Just wondering, when did Twitter decide to stop

[twitter-dev] oAuth new stuff?

2009-12-29 Thread Isaiah Carew
and how 'bout that off topic question? a non-silent-treatment sort of answer would be really great -- even if it's i can't tell you or i don't know or that's on a need to know basis and you don't need to know. or you want the truth, you can't handle the truth! or whatever. my biggest

Re: [twitter-dev] oAuth new stuff?

2009-12-29 Thread Raffi Krikorian
i don't know. sorry that i forgot to address your question. On Tue, Dec 29, 2009 at 1:18 PM, Isaiah Carew isa...@mac.com wrote: and how 'bout that off topic question? a non-silent-treatment sort of answer would be really great -- even if it's i can't tell you or i don't know or that's on a

Re: [twitter-dev] Re: oAuth Authenticate vs. Authorize (force_login)

2009-12-29 Thread Abraham Williams
@andy: oauth/authenticate is not signed other then with SSL. You are just passing the request token to Twitter. @aaron: authenticate and authorize both result in access tokens that allow you to act on behalf of the user. The first time a user goes through authenticate they authorize the

[twitter-dev] Re: Social Graph API: Legacy data format will be eliminated 1/11/2010

2009-12-29 Thread chinaski007
Why is Twitter announcing a major API change over the holidays? Why are they giving us just a few (mostly holiday!) days to account for it? Please either a) preserve the existing calls, or b) give us a 3 month window before deprecating. This is a new API change. Given that many have commented

Re: [twitter-dev] oAuth new stuff?

2009-12-29 Thread Isaiah Carew
bummer. i don't mean to be rude, but it sure feels like there is a large gap between the PR announcement a couple weeks ago and the reality on the ground. i'm trying to be patient in letting the info trickle down. i guess i'll ask again in a couple weeks? twiddling thumbs waiting hmmm

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

2009-12-29 Thread varnie
On Dec 30, 2:07 am, Raffi Krikorian ra...@twitter.com wrote: not right now. hmm, if it is so then how does the python-twitter (http:// code.google.com/p/python-twitter/) work? it allows posting messages and much more without the browser. maybe i missed smth... thank you for clarifications.

Re: [twitter-dev] oAuth new stuff?

2009-12-29 Thread Raffi Krikorian
if your application has access to a web browser, then i would strongly suggest that you implement a workflow where your user goes to a twitter.compage -- this workflow is intended to protect the usernames and passwords of Twitter users because they can trust that an unknown app does not have

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

2009-12-29 Thread Raffi Krikorian
not right now. hmm, if it is so then how does the python-twitter (http:// code.google.com/p/python-twitter/) work? it allows posting messages and much more without the browser. maybe i missed smth... thank you for clarifications. python twitter, i assume, is using basic authentication

Re: [twitter-dev] FW: de-latinisation of the web - http://blog.collins.net.pr/2009/12/de-latinisation-of-web.html

2009-12-29 Thread Abraham Williams
What does this have to do with the Twitter API other then the general connection to the internet? On Mon, Dec 28, 2009 at 23:53, Dean Collins d...@cognation.net wrote: UPDATE - This is really really bad - check out the paypal phishing example on my blog already using Cyrillic characters

RE: [twitter-dev] FW: de-latinisation of the web - http://blog.collins.net.pr/2009/12/de-latinisation-of-web.html

2009-12-29 Thread Dean Collins
Lol you mean apart from how this url below looks like twitter.com, smells like twitter.com ...But aint Twitter.com :-)   http://twittеr.com http://twittеr.com/    I don't know about you Abraham as you are far more experienced than I am, but if I run a web

Re: [twitter-dev] oAuth new stuff?

2009-12-29 Thread Isaiah
i understand that you have to tow the line. i agree with it — at least in principle. i like oauth. i understand it. i *want* to put it in my app. aside from my desktop client, i released an open source oAuth solution: http://thurly.net//5nl yet, of the prominent mac clients (tweetie,

[twitter-dev] Re: Platform announcements from LeWeb

2009-12-29 Thread funkatron
Will this be posted to the dev announcement list as well? I missed this until now because it was not -- only caught it by chance in my friends timeline via ReadWriteWeb. -- Ed Finkler http://funkatron.com Twitter:@funkatron AIM: funka7ron ICQ: 3922133 XMPP:funkat...@gmail.com On Dec 28, 12:24 

[twitter-dev] Re: Social Graph API: Legacy data format will be eliminated 1/11/2010

2009-12-29 Thread DustyReagan
I 2nd Dewald's sentiments. On Dec 27, 8:29 pm, Dewald Pretorius dpr...@gmail.com wrote: What is being deprecated here is the old pagination method with the page parameter. As noted earlier, it is going to cause great pain if the API is going to assume a cursor of -1 if no cursor is

[twitter-dev] Re: Streaming API Client DNS TTL issue

2009-12-29 Thread M. Edward (Ed) Borasky
I'm using the command-line curl as a client - will it do this, or do I need to go to a lower-level library-based connection strategy? On Dec 29, 9:33 am, John Kalucki jkalu...@gmail.com wrote: I've noticed a handful of Twitter Streaming API clients that are not honoring the DNS Time To Live