Re: [twitter-dev] Twitter API Request to Get the List of Friends Who have not followed you back

2010-03-11 Thread Mr. Khan
I did it, But here is a question about performance, if we have 100k
followers and suppose 90 k following then we have to loop through them and
then unfollow.

Regards:

Durrab Khan

On Thu, Mar 11, 2010 at 1:48 AM, Alam Sher alamshe...@gmail.com wrote:

 I think its the simplest of features to implement using existing Twitter
 API as Scott suggest.

 Just write a method in your service to fetch friends ids and followers ids
 and then compare these ids to separate the list of followers ids who are not
 friends. Then provide links to unfollow these ids on interface. Is that
 difficult? Not at all. Some client side programming is needed only.

 Cheers,
 Alam Sher


 On Tue, Mar 9, 2010 at 8:46 PM, Dean Collins d...@cognation.net wrote:

 www.mypostbutler.com does that, basically in the unfollow feature it
 separates out who follows you back or not you can then see who has no
 return love for you :(



 Cheers,

 Dean




 -Original Message-
 From: twitter-development-talk@googlegroups.com
 [mailto:twitter-development-t...@googlegroups.com] On Behalf Of Scott
 Wilcox
 Sent: Tuesday, March 09, 2010 9:58 AM
 To: twitter-development-talk@googlegroups.com
 Subject: Re: [twitter-dev] Twitter API Request to Get the List of
 Friends Who have not followed you back

 There is no API endpoint for this. You will need to build it clientside
 yourself. Get your list of followers and friends and then compare.

 Scott.

 On 9 Mar 2010, at 10:51, Durrab wrote:

  Hello,
 My name is Durrab and I want Twitter to Provide one more
  API Request as those Friends who have not followed your.
 
  For Example:
 
  http://api.twitter.com/1/friends/notfollowed/ids.format
 
  Thanks  Regards:
 
  Durrab




 --
 ___
 Alam Sher Khan
 +92 331 505 5549




-- 
Kind Regards

Durrab Jami Khan

Senior Software Engineer  CEO
Dura Interactive:
www.durainteractive.com

Team Lead: Java, J2EE, Adobe Flex



Mob
+92.333.4715789

Land Lines

+92 42 6621556
+92 42 7001543


Re: [twitter-dev] Twitter API Request to Get the List of Friends Who have not followed you back

2010-03-11 Thread Andrew Badera
Which is why you'll notice a lot of asynchronous account
parsing/polling behavior in many apps.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Wed, Mar 10, 2010 at 11:43 PM, Mr. Khan dur...@gmail.com wrote:
 I did it, But here is a question about performance, if we have 100k
 followers and suppose 90 k following then we have to loop through them and
 then unfollow.
 Regards:
 Durrab Khan

 On Thu, Mar 11, 2010 at 1:48 AM, Alam Sher alamshe...@gmail.com wrote:

 I think its the simplest of features to implement using existing Twitter
 API as Scott suggest.

 Just write a method in your service to fetch friends ids and followers ids
 and then compare these ids to separate the list of followers ids who are not
 friends. Then provide links to unfollow these ids on interface. Is that
 difficult? Not at all. Some client side programming is needed only.

 Cheers,
 Alam Sher

 On Tue, Mar 9, 2010 at 8:46 PM, Dean Collins d...@cognation.net wrote:

 www.mypostbutler.com does that, basically in the unfollow feature it
 separates out who follows you back or not you can then see who has no
 return love for you :(



 Cheers,

 Dean




 -Original Message-
 From: twitter-development-talk@googlegroups.com
 [mailto:twitter-development-t...@googlegroups.com] On Behalf Of Scott
 Wilcox
 Sent: Tuesday, March 09, 2010 9:58 AM
 To: twitter-development-talk@googlegroups.com
 Subject: Re: [twitter-dev] Twitter API Request to Get the List of
 Friends Who have not followed you back

 There is no API endpoint for this. You will need to build it clientside
 yourself. Get your list of followers and friends and then compare.

 Scott.

 On 9 Mar 2010, at 10:51, Durrab wrote:

  Hello,
             My name is Durrab and I want Twitter to Provide one more
  API Request as those Friends who have not followed your.
 
  For Example:
 
  http://api.twitter.com/1/friends/notfollowed/ids.format
 
  Thanks  Regards:
 
  Durrab




 --
 ___
 Alam Sher Khan
 +92 331 505 5549



 --
 Kind Regards

 Durrab Jami Khan

 Senior Software Engineer  CEO
 Dura Interactive:
 www.durainteractive.com

 Team Lead: Java, J2EE, Adobe Flex

 

 Mob
 +92.333.4715789

 Land Lines

 +92 42 6621556
 +92 42 7001543






Re: [twitter-dev] Twitter API Request to Get the List of Friends Who have not followed you back

2010-03-10 Thread Alam Sher
I think its the simplest of features to implement using existing Twitter API
as Scott suggest.

Just write a method in your service to fetch friends ids and followers ids
and then compare these ids to separate the list of followers ids who are not
friends. Then provide links to unfollow these ids on interface. Is that
difficult? Not at all. Some client side programming is needed only.

Cheers,
Alam Sher

On Tue, Mar 9, 2010 at 8:46 PM, Dean Collins d...@cognation.net wrote:

 www.mypostbutler.com does that, basically in the unfollow feature it
 separates out who follows you back or not you can then see who has no
 return love for you :(



 Cheers,

 Dean




 -Original Message-
 From: twitter-development-talk@googlegroups.com
 [mailto:twitter-development-t...@googlegroups.com] On Behalf Of Scott
 Wilcox
 Sent: Tuesday, March 09, 2010 9:58 AM
 To: twitter-development-talk@googlegroups.com
 Subject: Re: [twitter-dev] Twitter API Request to Get the List of
 Friends Who have not followed you back

 There is no API endpoint for this. You will need to build it clientside
 yourself. Get your list of followers and friends and then compare.

 Scott.

 On 9 Mar 2010, at 10:51, Durrab wrote:

  Hello,
 My name is Durrab and I want Twitter to Provide one more
  API Request as those Friends who have not followed your.
 
  For Example:
 
  http://api.twitter.com/1/friends/notfollowed/ids.format
 
  Thanks  Regards:
 
  Durrab




-- 
___
Alam Sher Khan
+92 331 505 5549


Re: [twitter-dev] Twitter API Request to Get the List of Friends Who have not followed you back

2010-03-09 Thread Scott Wilcox
There is no API endpoint for this. You will need to build it clientside 
yourself. Get your list of followers and friends and then compare.

Scott.

On 9 Mar 2010, at 10:51, Durrab wrote:

 Hello,
My name is Durrab and I want Twitter to Provide one more
 API Request as those Friends who have not followed your.
 
 For Example:
 
 http://api.twitter.com/1/friends/notfollowed/ids.format
 
 Thanks  Regards:
 
 Durrab



smime.p7s
Description: S/MIME cryptographic signature


RE: [twitter-dev] Twitter API Request to Get the List of Friends Who have not followed you back

2010-03-09 Thread Dean Collins
www.mypostbutler.com does that, basically in the unfollow feature it
separates out who follows you back or not you can then see who has no
return love for you :(

 

Cheers,

Dean

 


-Original Message-
From: twitter-development-talk@googlegroups.com
[mailto:twitter-development-t...@googlegroups.com] On Behalf Of Scott
Wilcox
Sent: Tuesday, March 09, 2010 9:58 AM
To: twitter-development-talk@googlegroups.com
Subject: Re: [twitter-dev] Twitter API Request to Get the List of
Friends Who have not followed you back

There is no API endpoint for this. You will need to build it clientside
yourself. Get your list of followers and friends and then compare.

Scott.

On 9 Mar 2010, at 10:51, Durrab wrote:

 Hello,
My name is Durrab and I want Twitter to Provide one more
 API Request as those Friends who have not followed your.
 
 For Example:
 
 http://api.twitter.com/1/friends/notfollowed/ids.format
 
 Thanks  Regards:
 
 Durrab



[twitter-dev] Twitter API Request to Get the List of Friends Who have not followed you back

2010-03-09 Thread Durrab
Hello,
My name is Durrab and I want Twitter to Provide one more
API Request as those Friends who have not followed your.

For Example:

http://api.twitter.com/1/friends/notfollowed/ids.format

Thanks  Regards:

Durrab