[twitter-dev] Re: Account Owner's last tweet

2009-10-06 Thread Damon Clinkscales
On Mon, Oct 5, 2009 at 11:52 PM, JK jam...@slip.net wrote: What api do I use to identify the last or latest tweet of the account owner? http://twitter.com/users/show could contain a tweet by a follower. http://twitter.com/statuses/user_timeline - states that it returns the 20 most recent

[twitter-dev] Re: friendship/create, and OAuth?

2009-10-06 Thread Fahim
I have tested using three different libraries - one is MPOAuth, the other one is the PHP library linked to via the Twitter API wiki and the last one is my own custom Objective-C framework. None of them work - but only for the friendships/create method. The code works fine for other methods, as I

[twitter-dev] Accounts no longer in existence not returning error

2009-10-06 Thread Dharmesh
I've noticed that several accounts that no longer exist on twitter are still returned when accessed via the API. Example: http://twitter.com/users/show/fitnesstwit.xml (returns a valid xml dataset) Despite the fact that http://twitter.com/fitnesstwitt returns a sorry that page doesn't exist

[twitter-dev] Re: Account Owner's last tweet

2009-10-06 Thread ryan alford
The user timeline returns only the user's tweets for me. On Oct 6, 2009, at 1:27 AM, JK jam...@slip.net wrote: What api do I use to identify the last or latest tweet of the account owner? http://twitter.com/users/show could contain a tweet by a follower.

[twitter-dev] Imagin

2009-10-06 Thread pooji...@me.com
firstly i'm sorry I'm not a developer of sorts :) I doubt this is the right area but perhaps you can pass it on Feature Request: when your using twitter more and more you start seeing groups unmanagable groups .. wouldn't it be good to cluster these types of twitter..ers and be able to

[twitter-dev] Re: Imagin

2009-10-06 Thread JDG
it sounds like you're asking for lists, which has just been announced. On Mon, Oct 5, 2009 at 05:05, pooji...@me.com pooji...@me.com wrote: firstly i'm sorry I'm not a developer of sorts :) I doubt this is the right area but perhaps you can pass it on Feature Request: when your using

[twitter-dev] Re: friendship/create, and OAuth?

2009-10-06 Thread jmathai
It also works using twitter-async. You can run the unit tests. http://github.com/jmathai/twitter-async/tree/master On Oct 5, 11:43 pm, Fahim fah...@gmail.com wrote: I have tested using three different libraries - one is MPOAuth, the other one is the PHP library linked to via the Twitter API

[twitter-dev] Re: Account Owner's last tweet

2009-10-06 Thread JK
Both API calls show replies from followers. I just want the tweets posted by the owner of the twitter account. For example, take a look at TO - http://twitter.com/users/show/terrellowens.xml At the time I am posting this, the last status shows: text@Speaker1234 wassup? Hv a good day/text which

[twitter-dev] Re: Twitter, Please Explain How Cursors Work

2009-10-06 Thread Dewald Pretorius
Thanks John. However, I will be the first to put up my hand and say that I have no clue what you said. Can someone please translate John's answer into easy to understand language, with specific relation to the questions I asked? Dewald On Oct 5, 1:17 am, John Kalucki jkalu...@gmail.com wrote:

[twitter-dev] Re: Search API Rate limiting - App Engine (again)

2009-10-06 Thread Martin Omander
Same here; my app runs on Google App Engine and 40% of the requests to the Twitter Search API get the 503 error message indicating rate limiting. Is there anything we as app authors can do on our side to alleviate the problem? /Martin On Oct 5, 1:53 pm, Paul Kinlan paul.kin...@gmail.com

[twitter-dev] Re: Search API Rate limiting - App Engine (again)

2009-10-06 Thread Chad Etzel
Hi All, GAE sites are problematic for the Twitter/Search API because the IPs making outgoing requests are fluid and cannot as such be easily allowed for access. Also, since most IPs are shared, other applications on the same IPs making requests mean that fewer requests per app get through. One

[twitter-dev] Re: Updates to the retweet API payload

2009-10-06 Thread Zaudio
Another significant thought... could you 'please' consider changing the name of the user node INSIDE the retweeted_status node to say retweeted_user ? Thius will make JSON parsing way simpler... especially if the goal is to extract the retweeted_status when present; or do things like quickly

[twitter-dev] Re: Account Owner's last tweet

2009-10-06 Thread Michael Steuer
Actually, the account/verify_credentials call also returns the most recent status for the authenticated user. Plus, as a benefit, it's a non-rate limited call. On 10/6/09 9:11 AM, JK jam...@slip.net wrote: Both API calls show replies from followers. I just want the tweets posted by the

[twitter-dev] Re: Account Owner's last tweet

2009-10-06 Thread ryan alford
At the time I am reading this, when viewing his actual page, his last tweet is shown as Takin of And when viewing the link you gave, that's the same tweet that I see. Also, the tweet you referenced was posted by TO in reply to a follower. That's TO's actual tweet. Look at his page.

[twitter-dev] Re: Lookup lots of user_ids from screenames?

2009-10-06 Thread Damon P. Cortesi
Hi Andrew, I recently added this as a beta feature on my random twitter utility app on appengine, TwitterAvatar.appspot.com. Here's an example: http://twitteravatar.appspot.com/users/names_to_ids?screen_names=dacort,jack,ed I don't currently have a hard limit on the number of names that can be

[twitter-dev] Re: Lookup lots of user_ids from screenames?

2009-10-06 Thread Michael Steuer
Would you mind sharing how you implemented that? And I assume that this is also limited by your rate limit? Are you whitelisted? Since it's not asking me to log in, I assume these requests are made over your account... On 10/6/09 10:05 AM, Damon P. Cortesi d.lifehac...@gmail.com wrote: Hi

[twitter-dev] Re: Updates to the retweet API payload

2009-10-06 Thread Marco Kaiser
No, please don't change that to retweeted_user ... the data structure included as the retweeted status is a status, and that data structure has a user property. That's a very clear object model, and should map very well to JSON, as it's nested, not at the same level as the main user the retweet is

[twitter-dev] Re: Twitter, Please Explain How Cursors Work

2009-10-06 Thread Jesse Stay
I said the same thing in the last thread about this - still no clue what Twitter is doing with cursors and how it is any different than the previous paging methods. Jesse On Tue, Oct 6, 2009 at 10:22 AM, Dewald Pretorius dpr...@gmail.com wrote: Thanks John. However, I will be the first to put

[twitter-dev] Re: Lookup lots of user_ids from screenames?

2009-10-06 Thread Damon P. Cortesi
Sure, I'm just using a whitelisted account to query twitter for the provided ID's. I then cache that data for 5 days as user id's don't tend to change much. Combined with the various IPs that app engine uses, it seems to do OK. The service also provides for programmatic access to twitter avatars

[twitter-dev] Re: Twitter, Please Explain How Cursors Work

2009-10-06 Thread Brian Smith
John, Based on your description, it looks like you are on the verge of being able to offer a very useful capability: the ability to query the follows AND unfollows since the last time you checked. That would be a great addition to the API. For example, I'd really like to be able to page through

[twitter-dev] Re: OAuth URL to Sign User Out

2009-10-06 Thread Jesse Stay
KC, I understand for your own app, but why would you want to log the user out of other apps or Twitter itself? That seems like a security issue to me if it were possible. Each app should have its own control and responsibility over when it logs the user out. Maybe I'm missing something? Jesse

[twitter-dev] Re: Search API Rate limiting - App Engine (again)

2009-10-06 Thread Paul Kinlan
Hi Chad, I am sorry but that doesn't even help in the slightest. You are essentially saying that we shouldn't develop on the App Engine, since would now have to also buy a proxy. Which is completely unfeasible and defeats the purpose of why people are using the app engine. I understand that

[twitter-dev] Re: Registered app under wrong twitter account?

2009-10-06 Thread Amicus
I'd also like to know what the official Twitter policy/recommendation is. I don't see any UI options to delete the registration of an app. On Oct 5, 6:22 am, Mack Earnhardt mack.earnha...@gmail.com wrote: I recently registered an app under @MacksMind, but the account I'll use for support etc

[twitter-dev] Re: Twitter, Please Explain How Cursors Work

2009-10-06 Thread jmathai
On Oct 6, 11:06 am, Jesse Stay jesses...@gmail.com wrote: I said the same thing in the last thread about this - still no clue what Twitter is doing with cursors and how it is any different than the previous paging methods. Jesse Is the main advantage that the new method takes a snapshot of

[twitter-dev] Re: Accounts no longer in existence not returning error

2009-10-06 Thread William
It does exist.. you just added an extra t at the end. William -- William Wnekowicz Altum Design Studios servi...@altumdesign.com 973.953.3764 Check out www.bugtwits.com On Oct 6, 2:50 am, Dharmesh dharme...@gmail.com wrote: I've noticed that several accounts that no longer exist on twitter

[twitter-dev] Re: Registered app under wrong twitter account?

2009-10-06 Thread ryan alford
You can delete registered applications from the Edit Application Settings screen. Ryan On Tue, Oct 6, 2009 at 2:51 PM, Amicus ram@gmail.com wrote: I'd also like to know what the official Twitter policy/recommendation is. I don't see any UI options to delete the registration of an app.

[twitter-dev] Re: Twitter, Please Explain How Cursors Work

2009-10-06 Thread Tim Haines
On Wed, Oct 7, 2009 at 7:58 AM, jmathai jmat...@gmail.com wrote: I'd be willing to sacrifice some accuracy for speed since I'm not doing anything like auto-unfollow. From a sample set of 150k calls to the api the average latency I have (from the west coast) is .85 seconds. Grabbing a

[twitter-dev] U.S.Senator Orrin Hatch's Request To Follow Me!

2009-10-06 Thread Taz
I click on the friend request link from my e-mail to go into twitter and accept it and it says no follow request at this time and I have not accepted or denied the senator's follow request.What do I do to accept it?

[twitter-dev] Re: U.S.Senator Orrin Hatch's Request To Follow Me!

2009-10-06 Thread Marco Kaiser
http://help.twitter.com is your friend 2009/10/6 Taz redskin76...@gmail.com I click on the friend request link from my e-mail to go into twitter and accept it and it says no follow request at this time and I have not accepted or denied the senator's follow request.What do I do to accept

[twitter-dev] Re: U.S.Senator Orrin Hatch's Request To Follow Me!

2009-10-06 Thread Taz
The Info provided thru twitter doesn't help and the only possible close one says I'm not authorized to look at it! On Oct 6, 3:57 pm, Marco Kaiser kaiser.ma...@gmail.com wrote: http://help.twitter.comis your friend 2009/10/6 Taz redskin76...@gmail.com  I click on the friend request

[twitter-dev] Re: U.S.Senator Orrin Hatch's Request To Follow Me!

2009-10-06 Thread Peter Denton
are you sure you are not signed into twitter or another third party app under a different username? On Tue, Oct 6, 2009 at 1:48 PM, Taz redskin76...@gmail.com wrote: I click on the friend request link from my e-mail to go into twitter and accept it and it says no follow request at this time

[twitter-dev] Re: U.S.Senator Orrin Hatch's Request To Follow Me!

2009-10-06 Thread Bruce Horney
quite sure I sign in under only one name and make sure the http is correct before I sign in.Is It possible the follow request was put out then deleted? On Tue, Oct 6, 2009 at 4:09 PM, Peter Denton petermden...@gmail.com wrote: are you sure you are not signed into twitter or another third party

[twitter-dev] Re: How to check if user is followed?

2009-10-06 Thread twittme_mobi
Hi Tomas, I just checked the social graph functions.The point is that if i make unfollow and then get all the id's of users that i follow - the user id that i unfollowed would be still there - e.g. this methods are not updated in real time. Could you all comment on this?Is that a bug? On Oct

[twitter-dev] Re: How to check if user is followed?

2009-10-06 Thread Abraham Williams
Check out: http://apiwiki.twitter.com/Twitter-REST-API-Method:-friendships-show On Sat, Oct 3, 2009 at 04:46, twittme_mobi nlupa...@googlemail.com wrote: Hi guys, i tried friendship/exists but it throws an error when the user is protected.How should i accomplish this task with the API?

[twitter-dev] Re: Twitter, Please Explain How Cursors Work

2009-10-06 Thread John Kalucki
There is no snapshotting. 5,000 edges are returned on each call. Few users have more than 5,000 followers or more than 5,000 followings. -John Kalucki http://twitter.com/jkalucki Services, Twitter Inc. On Oct 6, 11:58 am, jmathai jmat...@gmail.com wrote: On Oct 6, 11:06 am, Jesse Stay

[twitter-dev] Re: Twitter, Please Explain How Cursors Work

2009-10-06 Thread John Kalucki
No. If we are to offer real-time social graph changes, they'll be via the Streaming API. In the mean time, there is no low-latency high- throughput way to determine changes to the social graph. Attempts to simulate this at large scale via repeated polling are likely to be frustrating. -John

[twitter-dev] Twitter rejecting show_user request

2009-10-06 Thread ArnieLapinig
Hello, Just started developing a Twitter app... I'm using a php script with CURL to issue a show_user request, and i'm getting this response: Warning: file_get_contents(?xml version=1.0 encoding=UTF-8? hash request/users/show.xml?user_id=4667006333/request errorNot found/error /hash )

[twitter-dev] Re: Twitter, Please Explain How Cursors Work

2009-10-06 Thread John Kalucki
I described, in some detail, the reasons for cursors here: http://groups.google.com/group/twitter-development-talk/msg/badfb7b6074aab10 If the details are uninteresting, the high-level summary is this: The paged API was designed in a previous era. Paging is simply too expensive and totally

[twitter-dev] Re: Twitter, Please Explain How Cursors Work

2009-10-06 Thread Brian Smith
John Kalucki wrote: No. If we are to offer real-time social graph changes, they'll be via the Streaming API. In the mean time, there is no low-latency high- throughput way to determine changes to the social graph. Attempts to simulate this at large scale via repeated polling are likely to be

[twitter-dev] Re: Registered app under wrong twitter account?

2009-10-06 Thread Amicus
yes, thanks. I see a Delete button at the bottom of the Edit Application Settings page. The Applications Details has an Edit Application Settings button and a Reset consumer key/secret button. It seems like they should have included a delete button here (instead of placing it at the bottom of

[twitter-dev] Re: Account Owner's last tweet

2009-10-06 Thread JK
Got it. So all the tweets in a user_timeline or in the status /users/ show api call do originate from the owner of the twitter account (could be a new tweet or a reply). Thanks you for all your comments! On Oct 6, 10:44 am, Damon Clinkscales sca...@pobox.com wrote: On Tue, Oct 6, 2009 at 11:11

[twitter-dev] Re: Account Owner's last tweet

2009-10-06 Thread Michael Steuer
Again, if your user is logged in and you're really just looking for HIS LAST tweet (current status), use verify_credentials... It's a free API call On 10/6/09 5:19 PM, JK jam...@slip.net wrote: Got it. So all the tweets in a user_timeline or in the status /users/ show api call do originate

[twitter-dev] Re: Twitter rejecting show_user request

2009-10-06 Thread JDG
Are you sure that the ID in question exists? On Tue, Oct 6, 2009 at 16:58, ArnieLapinig arnie.lapi...@gmail.com wrote: Hello, Just started developing a Twitter app... I'm using a php script with CURL to issue a show_user request, and i'm getting this response: Warning:

[twitter-dev] Re: Accounts no longer in existence not returning error

2009-10-06 Thread Dharmesh
Sorry, I should have used a better example. Like: http://twitter.com/807095 -- which as it turns out, is not really a problem either, because I figured out that the API will allow lookup by UserID (vs. Screen Name) whereas the web interface does not. In any case, thanks for following up and

[twitter-dev] Re: U.S.Senator Orrin Hatch's Request To Follow Me!

2009-10-06 Thread Nalin Savara
It's much more likely that either: 1. You've directed multiple email accounts to your email id and it was sent to a different email acc or twitter id attached to different email acc. Log out of twitter and then try clicking follow invit - it should either 'already expired ' or ask login and then

[twitter-dev] [twitter Dev] Failed to validate oauth signature and token

2009-10-06 Thread uooooookeng
I am trying to run a sample app but i am getting 401 error during request_token phase. Failed to validate oauth signature and token this is what i am accessing:

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

2009-10-06 Thread ryan alford
The signature needs to be at the end of the URL, not sorted with the other parameters. On Oct 6, 2009, at 11:47 PM, uookeng loque1...@nate.com wrote: I am trying to run a sample app but i am getting 401 error during request_token phase. Failed to validate oauth signature and token

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

2009-10-06 Thread jmathai
The order of parameters shouldn't matter. What library are you using to generate the url? On Oct 6, 8:51 pm, ryan alford ryanalford...@gmail.com wrote: The signature needs to be at the end of the URL, not sorted with the other parameters. On Oct 6, 2009, at 11:47 PM, uookeng

[twitter-dev] Re: Twitter rejecting show_user request

2009-10-06 Thread ArnieLapinig
yes, the twitter id comes from a twitter hashtag search that returns an xml document. i'm using show.xml to get the location of the twitter id. On Oct 6, 5:57 pm, JDG ghil...@gmail.com wrote: Are you sure that the ID in question exists? On Tue, Oct 6, 2009 at 16:58, ArnieLapinig

[twitter-dev] Case is wrong in GeoRSS

2009-10-06 Thread steve
You're currently sending Geo Tags as: geo xmlns:georss=http://www.georss.org/georss; georss:Point37.78029 -122.39697/georss:Point /geo But according to the schema for GeoRSS-Simple Point should be lowercased: http://www.georss.org/simple as in:

[twitter-dev] Re: Case is wrong in GeoRSS

2009-10-06 Thread stevenic
I'm actually looking for both uppercase Point and lowercase point so if you fix this on your side I'm ready... On Oct 6, 9:40 pm, steve ick...@gmail.com wrote: You're currently sending Geo Tags as:             geo xmlns:georss=http://www.georss.org/georss;