[twitter-dev] Follower analysis without whitelisting breaks limits?

2011-02-14 Thread Jo
Hi there at twitter,

I wonder how the following is done with a per user limit of 350
requests per hour:
We have a tool, that analyzes follower and following of a specific
user.
(for example: list the new followers or the ones, that doesn't follow
back).
Luckily we are whitelisted at the moment!

For this feature we use the REST API interface (http://api.twitter.com/
version/followers/ids.format) to get a list of all follower and
following (friends) ids and compare them with the list stored
yesterday. This id-list is partitioned in 5000 ids. To get the whole
list of follower ids of the user aplusk for example, we have to call
the API 1268 times. With a per user limit of 350 calls/hour, this
means, it takes 4 hours to get the whole list!

Is there another way to do this? Or what are your answers for this
problem?

Yours
Joe Seibert

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] Re: How to access to friendship data of twitter users

2011-02-14 Thread Xintao Liu
@epomqo, Shannon and L. Mohan, thank you for your kind help. I will
look through these stuff you provided and come back to report the
latest progress. Thank you very much.

On Dec 23 2010, 5:09 am, L. Mohan Arun mar...@gmail.com wrote:
 how twitter users connect with each other, is it possible to do it?

 Yes.

 I just want to get the network of twitter users, no other information.

 In addition to the ones mentioned by Shannon, also 
 seehttp://dev.twitter.com/doc/get/friendships/show
 Returns detailed information about the relationship between two users.

 ~~~ Mohan

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] Paging of direct messages

2011-02-14 Thread Leon Meijer
Hello all,  
   
How can I page direct messages in my web application if there are no cursor, 
max_id, dm_count or such other parameters... I would like paging like Page: 
First 1 2 3 4 ... Last.  
   
Any help?  
   
Regards,  
Leon

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] Re: Count of Retweet Messages

2011-02-14 Thread Tim Skipper
On Feb 14, 8:18 am, Myung Jin Lee xmlsy...@gmail.com wrote:
 Hi.

 I am making tweet analyzer.
 So, I have a question, and I need your help.

 Can I know total count of someone's message retweeted by others?

 I wonder if you can help me.
 Thanks.

You need this API call:  http://dev.twitter.com/doc/get/statuses/retweets_of_me

Regards,
Tim Skipper

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] App title and url do not get updated (twitter website bug)

2011-02-14 Thread guysoft
Hi all,
A few days ago I updated my apps url and title, however both don't
show up in the user statues posted after the update.

Here is an example tweet posted via 'python api' (the old name, that
keeps not getting updated): 
http://twitter.com/#!/guysoft/status/37077323643617280

Here is the app page (that shows as updated, new name is SMS Gate-
IL):
http://dev.twitter.com/apps/621723

This is clearly a bug in the twitter website, but I can't seem to find
a way to reach the website developers, or jog twitter to start using
the updated title and url.

Thanks,
Guy

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] User Streams and @mentions

2011-02-14 Thread Rich
Hi all

I'm just starting to play with the User Streams with the aim of
allowing it in addition to REST api.

I've had a stream open for most of the day looking at the received
data and most of it looks pretty straightforward.

When it comes to DM's, deletes, etc the message tells us that in the
JSON.

The one thing I haven't noticed is how mentions are displayed for
example I receive a mention from someone I don't follow.  This only
appears on my Mentions API under REST and not my home timeline.

When I connect over User Streams it seems to just come in as any other
tweet.  My question is how do I determine that this is a mention that
shouldn't appear in my home timeline.

Do I have to keep track of the initial friends message and compare the
user id every time or is there something even simpler that I'm
missing?

Many thanks
Richard

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


Re: [twitter-dev] User Streams and @mentions

2011-02-14 Thread Tom van der Woerdt

Home Timeline = check it in the friends dictionary
Mention = match the tweet's text
Search = match the keywords

The rest is easy.

Tom


On 2/14/11 4:01 PM, Rich wrote:

Hi all

I'm just starting to play with the User Streams with the aim of
allowing it in addition to REST api.

I've had a stream open for most of the day looking at the received
data and most of it looks pretty straightforward.

When it comes to DM's, deletes, etc the message tells us that in the
JSON.

The one thing I haven't noticed is how mentions are displayed for
example I receive a mention from someone I don't follow.  This only
appears on my Mentions API under REST and not my home timeline.

When I connect over User Streams it seems to just come in as any other
tweet.  My question is how do I determine that this is a mention that
shouldn't appear in my home timeline.

Do I have to keep track of the initial friends message and compare the
user id every time or is there something even simpler that I'm
missing?

Many thanks
Richard



--
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] about trends.api.twitter.com

2011-02-14 Thread Yusuke Yamamoto
Hi Matt,

Are trends.api.twitter.com/* officially supported endpoints?

In other words, should Twitter4J and other libraries connect to 
trends.api.twitter.com by default?

Thanks,
-- 
Yusuke Yamamoto
yus...@mac.com

this email is: [x] bloggable/tweetable [ ] private
follow me on : http://twitter.com/yusukeyamamoto
subscribe me at : http://samuraism.jp/

On Feb 11, 2011, at 10:40 , Matt Harris wrote:

 Hi Ian,
 
 For trends you might like to try our trends.api.twitter.com server which 
 hosts a cached copy of the trends information and is updated whenever the 
 trends change. It should support your use case and we would be interested in 
 any feedback you may have about it's performance.
 
 To use it just map the api.twitter.com trends request onto the 
 trends.api.twitter.com domain name, for example:
 http://api.twitter.com/1/trends/available.json
 becomes:
 http://trends.api.twitter.com/1/trends/available.json
 
 and:
 http://api.twitter.com/1/trends/1.json
 becomes:
 http://trends.api.twitter.com/1/trends/1.json
 
 Best,
 @themattharris
 Developer Advocate, Twitter
 http://twitter.com/themattharris

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


Re: [twitter-dev] App title and url do not get updated (twitter website bug)

2011-02-14 Thread Taylor Singletary
Hi Guy,

Thanks for the report -- we're looking into this issue.

Thanks,
Taylor

@episod http://twitter.com/episod - Taylor Singletary - Twitter Developer
Advocate


On Mon, Feb 14, 2011 at 1:43 AM, guysoft guys...@gmail.com wrote:

 Hi all,
 A few days ago I updated my apps url and title, however both don't
 show up in the user statues posted after the update.

 Here is an example tweet posted via 'python api' (the old name, that
 keeps not getting updated):
 http://twitter.com/#!/guysoft/status/37077323643617280

 Here is the app page (that shows as updated, new name is SMS Gate-
 IL):
 http://dev.twitter.com/apps/621723

 This is clearly a bug in the twitter website, but I can't seem to find
 a way to reach the website developers, or jog twitter to start using
 the updated title and url.

 Thanks,
 Guy

 --
 Twitter developer documentation and resources: http://dev.twitter.com/doc
 API updates via Twitter: http://twitter.com/twitterapi
 Issues/Enhancements Tracker:
 http://code.google.com/p/twitter-api/issues/list
 Change your membership to this group:
 http://groups.google.com/group/twitter-development-talk


-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] Re: Search API the public alternative to URL count API?

2011-02-14 Thread Carlos Hugo Gonzalez Castell
are usign oauth api?

in this api your manage the callbacks twitter

On 13 feb, 07:51, Martin Cronjé martincronj...@gmail.com wrote:
 Hi there,

 I am busy writing an aggregator and I am looking at using the Twitter
 API to get URL counts.

 I seems that public developers are not allowed to use the URL
 counting API based on the Tweet Button FAQ. Which leaves me with not
 other option but to use the search API for URL counting. Using the
 search API makes not sense if there a Count API.

 This leaves me with the following questions
 1. Will my application / I.P. get banned if I use the Count API?
 2. Is there a way to request multiple URLs at once to limit round-
 trips?
 3. The URL count API returns not threshold information. So if I am
 allowed to use it, should I manage the thresholds myself

 FAQ -http://dev.twitter.com/pages/tweet_button_faq#count-api
 URL Count API -http://urls.api.twitter.com/1/urls/count.json?url=URL
 Search API -http://search.twitter.com/search.format

 My application aggregates URLs on a central server using a shared
 account so the request numbers may be quite high

 Martin

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] Re: Follower analysis without whitelisting breaks limits?

2011-02-14 Thread Dewald Pretorius
If I remember correctly, Site Streams sends you a transaction only
when the user follows another user (adding to Following). It does not
send you a transaction when someone else follows that user (adding to
Followers). I don't know if this work the same in User Streams.
Clarification by Twitter will be appreciated.

On Feb 14, 12:38 pm, David Giamanco dgiama...@gmail.com wrote:
 I believe the new way to do this is to initially call the REST API to get
 all of the ids for the first time you process this user. Then you setup a
 User Stream on the user and process any requests that come in through there.
 For your uses, if you only show users the differences in follower counts
 then you don't need the initial call to the REST API to collect all ids. All
 you need is a count of the ids and then to initiate a User Stream. The User
 Stream will give you the differences in real time and you can store just the
 differences, instead of the entire set of ids.

 David Giamanco

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] Twitter API ME 1.6

2011-02-14 Thread Ernandes Jr.
Hi,

I would like to announce that *Twitter API ME 1.6* has just been released.
The main features present in this version are:

   - Retweets to me timeline
   - Retweets by me timeline
   - Tweets from list timeline
   - List management (e.g. create, update, memberships, subscriptions, etc)
   - Special character (*) in password bug fix

To download the new version, access:

http://kenai.com/projects/twitterapime/downloads/directory/1.6

Twitter API ME is available for Java ME, Android and Blackberry devices.

Regards,

-- 
Ernandes Jr.
-
ALL programs are poems. However,
NOT all programmers are poets.

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


Re: [twitter-dev] about trends.api.twitter.com

2011-02-14 Thread Matt Harris
Hi Yusuke,

The host is experimental so we're just looking for feedback about it's
performance right now.

Best,
@themattharris
Developer Advocate, Twitter
http://twitter.com/themattharris


On Mon, Feb 14, 2011 at 6:48 AM, Yusuke Yamamoto yus...@mac.com wrote:

 Hi Matt,

 Are trends.api.twitter.com/* officially supported endpoints?

 In other words, should Twitter4J and other libraries connect to
 trends.api.twitter.com by default?

 Thanks,
 --
 Yusuke Yamamoto
 yus...@mac.com

 this email is: [x] bloggable/tweetable [ ] private
 follow me on : http://twitter.com/yusukeyamamoto
 subscribe me at : http://samuraism.jp/

 On Feb 11, 2011, at 10:40 , Matt Harris wrote:

  Hi Ian,
 
  For trends you might like to try our trends.api.twitter.com server which
 hosts a cached copy of the trends information and is updated whenever the
 trends change. It should support your use case and we would be interested in
 any feedback you may have about it's performance.
 
  To use it just map the api.twitter.com trends request onto the
 trends.api.twitter.com domain name, for example:
  http://api.twitter.com/1/trends/available.json
  becomes:
  http://trends.api.twitter.com/1/trends/available.json
 
  and:
  http://api.twitter.com/1/trends/1.json
  becomes:
  http://trends.api.twitter.com/1/trends/1.json
 
  Best,
  @themattharris
  Developer Advocate, Twitter
  http://twitter.com/themattharris

 --
 Twitter developer documentation and resources: http://dev.twitter.com/doc
 API updates via Twitter: http://twitter.com/twitterapi
 Issues/Enhancements Tracker:
 http://code.google.com/p/twitter-api/issues/list
 Change your membership to this group:
 http://groups.google.com/group/twitter-development-talk


-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


Re: [twitter-dev] Re: should search and streaming apis return similar tweets for equivalent geolocation areas

2011-02-14 Thread M. Edward (Ed) Borasky
On Mon, 14 Feb 2011 11:33:54 -0800 (PST), Taylor Singletary 
taylorsinglet...@twitter.com wrote:

The Search API is greedy with those location fields on user's
profiles. It's not likely this behavior will be emulated in the
Streaming API with the bright side that you can be more confident in
the location accuracy in matches on the Streaming API.

Thanks,
Taylor


I wouldn't call the Search API greedy on location as much as I'd call 
it myopic or easily confused. ;-) Twitalyzer is now getting some of 
their location data from PeerIndex when the Twitter profile isn't 
accurate.

--
http://twitter.com/znmeb http://borasky-research.net

A mathematician is a device for turning coffee into theorems. -- Paul 
Erdős


--
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] Streaming API setLocations Accuracy

2011-02-14 Thread 1537 News
Good Afternoon

I am using the StreamingAPI with a boundary box but finding it to be
inaccurate.

I don't mind thinking outside the box :) but my a large % of my results are
20 miles outside
my selected boundary box.
I have not set any other search criteria.

Any thoughts?

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


Re: [twitter-dev] Re: Tweet button doesn't support internationalized domain names

2011-02-14 Thread Matt Harris
Hi Nashi,

This is a known issue our engineers have been made aware of. We'll post
updates to the ticket as they become available:
http://code.google.com/p/twitter-api/issues/detail?id=2045

Best,
@themattharris
Developer Advocate, Twitter
http://twitter.com/themattharris


On Mon, Feb 14, 2011 at 2:32 PM, Nashi Power nashipo...@googlemail.comwrote:

 Update: It seems to be the double dash -- within the ACE prefix of the
 punycode (xn--) of the international domain name that the Tweet button
 doesn't like. I don't know why double dashes are rejected. Anyhow, it
 would appear that if strings containing the ACE prefix xn-- are
 accepted - perhaps as an exception to the blanket rejection of double
 dashes - international domain names would work correctly with the
 tweet button.

 See:
 http://tools.ietf.org/html/rfc3490
 http://www.atm.tut.fi/list-archive/ietf-announce/msg13572.html

 Cheers.

 --
 Twitter developer documentation and resources: http://dev.twitter.com/doc
 API updates via Twitter: http://twitter.com/twitterapi
 Issues/Enhancements Tracker:
 http://code.google.com/p/twitter-api/issues/list
 Change your membership to this group:
 http://groups.google.com/group/twitter-development-talk


-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


Re: [twitter-dev] Streaming API setLocations Accuracy

2011-02-14 Thread Augusto Santos
Any exaples of tweets outside the box and the box itself?

On Mon, Feb 14, 2011 at 6:59 PM, 1537 News 1537n...@gmail.com wrote:

 Good Afternoon

 I am using the StreamingAPI with a boundary box but finding it to be
 inaccurate.

 I don't mind thinking outside the box :) but my a large % of my results are
 20 miles outside
 my selected boundary box.
 I have not set any other search criteria.

 Any thoughts?

 --
 Twitter developer documentation and resources: http://dev.twitter.com/doc
 API updates via Twitter: http://twitter.com/twitterapi
 Issues/Enhancements Tracker:
 http://code.google.com/p/twitter-api/issues/list
 Change your membership to this group:
 http://groups.google.com/group/twitter-development-talk




-- 
氣

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk