Re: [twitter-dev] Re: Friend and Follower count - since timestamp

2010-07-07 Thread Matt Harris
Hey Nischal,

So this doesn't get lost in the email archive would you be able to create
this as an enhancement request in our issue tracker:
http://code.google.com/p/twitter-api/issues/list

Thanks,
Matt

On Tue, Jul 6, 2010 at 10:00 PM, nischalshetty nischalshett...@gmail.comwrote:

 Thanks. That would help me in listing out new followers. But if any of
 a users old friends stopped following them, I wouldn't get it :(

 Anyways, hoping to see a 'since' param with new and deleted ids sent.
 I know you guys are pretty tied up with other important stuff, but
 hope to see this someday :)

 -Nischal

 On Jul 6, 7:04 pm, Raffi Krikorian ra...@twitter.com wrote:
  unfortunately, we don't yet support that functionality.  the list is
 sorted
  with the newest items being first - you could grab the first page, and
  then go backwards until you start to see data that you've seen before.
 
  On Mon, Jul 5, 2010 at 10:34 PM, nischalshetty 
 nischalshett...@gmail.comwrote:
 
   My apphttp://justunfollow.comextensively uses the friends/ids and
   followers/ids API. Since twitter users have a lot of followers and
   friends and this API is paginated, I find it repetitive to use it.
 
   A since param that sends me all new friend and follower ids of a
   user along with the deleted ids (when someone stops being a friend or
   follower) would help a lot. I checked the documentation but found no
   mention of this. Please help!
 
  --
  Raffi Krikorian
  Twitter Platform Teamhttp://twitter.com/raffi




-- 


Matt Harris
Developer Advocate, Twitter
http://twitter.com/themattharris


[twitter-dev] Re: Friend and Follower count - since timestamp

2010-07-07 Thread nischalshetty
Hi Matt,

Sure, will do that right away :)

-Nischal

On Jul 7, 11:13 am, Matt Harris thematthar...@twitter.com wrote:
 Hey Nischal,

 So this doesn't get lost in the email archive would you be able to create
 this as an enhancement request in our issue 
 tracker:http://code.google.com/p/twitter-api/issues/list

 Thanks,
 Matt

 On Tue, Jul 6, 2010 at 10:00 PM, nischalshetty 
 nischalshett...@gmail.comwrote:





  Thanks. That would help me in listing out new followers. But if any of
  a users old friends stopped following them, I wouldn't get it :(

  Anyways, hoping to see a 'since' param with new and deleted ids sent.
  I know you guys are pretty tied up with other important stuff, but
  hope to see this someday :)

  -Nischal

  On Jul 6, 7:04 pm, Raffi Krikorian ra...@twitter.com wrote:
   unfortunately, we don't yet support that functionality.  the list is
  sorted
   with the newest items being first - you could grab the first page, and
   then go backwards until you start to see data that you've seen before.

   On Mon, Jul 5, 2010 at 10:34 PM, nischalshetty 
  nischalshett...@gmail.comwrote:

My apphttp://justunfollow.comextensivelyuses the friends/ids and
followers/ids API. Since twitter users have a lot of followers and
friends and this API is paginated, I find it repetitive to use it.

A since param that sends me all new friend and follower ids of a
user along with the deleted ids (when someone stops being a friend or
follower) would help a lot. I checked the documentation but found no
mention of this. Please help!

   --
   Raffi Krikorian
   Twitter Platform Teamhttp://twitter.com/raffi

 --

 Matt Harris
 Developer Advocate, Twitterhttp://twitter.com/themattharris


[twitter-dev] Re: Friend and Follower count - since timestamp

2010-07-07 Thread nischalshetty
Raised an issue: http://code.google.com/p/twitter-api/issues/detail?id=1732

Hope one of you finds time to work on this, would be a big help for me
as well whole lot of other apps that deal with a users friend and
followers.

-Nischal

On Jul 7, 1:37 pm, nischalshetty nischalshett...@gmail.com wrote:
 Hi Matt,

 Sure, will do that right away :)

 -Nischal

 On Jul 7, 11:13 am, Matt Harris thematthar...@twitter.com wrote:



  Hey Nischal,

  So this doesn't get lost in the email archive would you be able to create
  this as an enhancement request in our issue 
  tracker:http://code.google.com/p/twitter-api/issues/list

  Thanks,
  Matt

  On Tue, Jul 6, 2010 at 10:00 PM, nischalshetty 
  nischalshett...@gmail.comwrote:

   Thanks. That would help me in listing out new followers. But if any of
   a users old friends stopped following them, I wouldn't get it :(

   Anyways, hoping to see a 'since' param with new and deleted ids sent.
   I know you guys are pretty tied up with other important stuff, but
   hope to see this someday :)

   -Nischal

   On Jul 6, 7:04 pm, Raffi Krikorian ra...@twitter.com wrote:
unfortunately, we don't yet support that functionality.  the list is
   sorted
with the newest items being first - you could grab the first page, and
then go backwards until you start to see data that you've seen before.

On Mon, Jul 5, 2010 at 10:34 PM, nischalshetty 
   nischalshett...@gmail.comwrote:

 My apphttp://justunfollow.comextensivelyusesthe friends/ids and
 followers/ids API. Since twitter users have a lot of followers and
 friends and this API is paginated, I find it repetitive to use it.

 A since param that sends me all new friend and follower ids of a
 user along with the deleted ids (when someone stops being a friend or
 follower) would help a lot. I checked the documentation but found no
 mention of this. Please help!

--
Raffi Krikorian
Twitter Platform Teamhttp://twitter.com/raffi

  --

  Matt Harris
  Developer Advocate, Twitterhttp://twitter.com/themattharris


Re: [twitter-dev] Re: Friend and Follower count - since timestamp

2010-07-07 Thread Pascal Jürgens
Just wanted to add,

it's a sad thing etags see hardly any use today. Back when the graph methods 
weren't paginated, you could just send a request with the etag header set and 
it would come back not modified, a very efficient thing to do. It won't give 
you the difference between arbitrary points in time, but for most applications, 
it's quite enough.

I don't think anybody ever confirmed that this even works with paginated calls, 
but I don't see why it couldn't (especially since pages are apparently newest 
first, as Raffi said).

Pascal

On Jul 7, 2010, at 10:50 , nischalshetty wrote:

 Raised an issue: http://code.google.com/p/twitter-api/issues/detail?id=1732
 
 Hope one of you finds time to work on this, would be a big help for me
 as well whole lot of other apps that deal with a users friend and
 followers.
 
 -Nischal



[twitter-dev] Re: Friend and Follower count - since timestamp

2010-07-06 Thread nischalshetty
Thanks. That would help me in listing out new followers. But if any of
a users old friends stopped following them, I wouldn't get it :(

Anyways, hoping to see a 'since' param with new and deleted ids sent.
I know you guys are pretty tied up with other important stuff, but
hope to see this someday :)

-Nischal

On Jul 6, 7:04 pm, Raffi Krikorian ra...@twitter.com wrote:
 unfortunately, we don't yet support that functionality.  the list is sorted
 with the newest items being first - you could grab the first page, and
 then go backwards until you start to see data that you've seen before.

 On Mon, Jul 5, 2010 at 10:34 PM, nischalshetty 
 nischalshett...@gmail.comwrote:

  My apphttp://justunfollow.comextensively uses the friends/ids and
  followers/ids API. Since twitter users have a lot of followers and
  friends and this API is paginated, I find it repetitive to use it.

  A since param that sends me all new friend and follower ids of a
  user along with the deleted ids (when someone stops being a friend or
  follower) would help a lot. I checked the documentation but found no
  mention of this. Please help!

 --
 Raffi Krikorian
 Twitter Platform Teamhttp://twitter.com/raffi