[twitter-dev] Re: Retrieve tweets with ID greater than a passed-in ID?

2009-03-11 Thread Nick Toumpelis
Hi Greg, I sent an email about this about a week ago because I thought that since_id should return all the tweets after the given ID. Apparently, (thanks to Matt Sanford) you also need the count parameter in the call. As far as I can tell, your call is to the API is otherwise OK. Hope

[twitter-dev] Re: Retrieve tweets with ID greater than a passed-in ID?

2009-03-10 Thread Greg Maletic
Hi, Doug-- Can you explain what you mean that credentials need to be pushed through the header? I'm using an Objective-C library I found to access Twitter, and the method I outlined is what this library is doing to access password-protected accounts. If I can get some clarity on what you mean, I

[twitter-dev] Re: Retrieve tweets with ID greater than a passed-in ID?

2009-03-10 Thread Greg Maletic
On Mar 10, 6:54 am, Doug Williams d...@twitter.com wrote: Can you tell me which library you are using? It's just a basic library that was given as part of a class at Stanford on iPhone development. If you want to download the source, it can be downloaded from

[twitter-dev] Re: Retrieve tweets with ID greater than a passed-in ID?

2009-03-10 Thread Doug Williams
Guys, this is a little out of my realm of expertise. Any Objective-C folks out there able to lend Greg a hand? Greg, if no one responds soon, I'll roll my sleeves up and play around with the source... Doug Williams Twitter API Support http://twitter.com/dougw On Tue, Mar 10, 2009 at 3:04 PM,

[twitter-dev] Re: Retrieve tweets with ID greater than a passed-in ID?

2009-03-10 Thread Alex Payne
You might look at what MGTwitterEngine does: http://svn.cocoasourcecode.com/MGTwitterEngine/ On Tue, Mar 10, 2009 at 14:03, Doug Williams d...@twitter.com wrote: Guys, this is a little out of my realm of expertise. Any Objective-C folks out there able to lend Greg a hand? Greg, if no one

[twitter-dev] Re: Retrieve tweets with ID greater than a passed-in ID?

2009-03-10 Thread Joshua Perry
Greg, It looks like the code (in jetchJSONObjectForURL) is using a shortcut method of grabbing data from the web with NSString:initWithContentsOfURL: which creates an NSString from the contents at a specific URL ( go figure! ). I'm not sure if that method utilizes the credential store, if

[twitter-dev] Re: Retrieve tweets with ID greater than a passed-in ID?

2009-03-10 Thread Greg Maletic
Thanks, Josh. That gives me some valuable insight into what's needed behind the scenes. I think, however, I'm going to try out MGTwitterEngine, as it's a full-featured framework that'll save me from having to figure this whole thing out. Thanks for everyone's help! Much appreciated. --Greg

[twitter-dev] Re: Retrieve tweets with ID greater than a passed-in ID?

2009-03-09 Thread Cameron Kaiser
A question that I haven't been able to figure out by reading the documentation... I'm currently using the JSON call: http://[username]:[passwo...@twitter.com/statuses/user_timeline/[username].json ...to retrieve tweets from a password-protected Twitter account. How can I modify this