[twitter-dev] Re: Return number of tweets in a Search

2011-01-13 Thread Steve
The app is a competition system, so really I need to try and retrieve
all entries of a hashtag if possible (but if it's not possible, then
other comp systems mustn't either, surely?)

Thanks for the suggestions - might try and utilise DataSift for it.

On Jan 13, 1:04 am, @Red_Eyes millerdotp...@gmail.com wrote:
 The maximum number of tweets you can return per page is 100. If you return
 all the pages available you can get to around 1,500 max. These limits are
 defined in the search API documentation. 
 (http://dev.twitter.com/doc/get/search).

 You may be better either looking at the streaming API and hope some of the
 Tweets you are looking for turn up, or use your random number generator to
 search n times and pull back 100 Tweets at a go. You would have to set an
 interval between searches otherwise you are likley to pull back the same
 Tweet more than once, especially if it is a seldom used hashtag.

 Perhaps if you have a number of hashtags you are looking for, you could
 round robin through all of them with a suitable delay between each one
 (still checking for duplicates)... or possibly check for the same hashtag at
 the same time each day if you are looking for some sort of frequency
 indicator. Alternatively add some sort of randomness to the date range per
 your example.

 Paul

-- 
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] xAuth and Delphi

2011-01-13 Thread Leonmeijer
Hello all,

This is my first post on this list.

I'm writing a Twitter application which has xAuth access but I'm
having problems writing it in Delphi, I used the TTwitter thing but
this doesn't seem to have xAuth functionality and I can't get it to
work.

Does someone have an example of a Delphi xAuth app or can help me out
with some code?

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] Email posts status

2011-01-13 Thread Rys
Looking for a solution that an unique email can be sent to update
Twitter post.  Anyone have a off the shelf solution?

-- 
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: Email posts status

2011-01-13 Thread noki
Hi, Rys

Tweetymail (http://tweetymail.com/) is one you are lookng for.

Some other services are available if you never mind to read Japanase
to regist your account.

-- 
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 Twitter Feed from a group of Twitters

2011-01-13 Thread Abhi
Thanks Taylor! This was helpful.

On Jan 12, 12:01 pm, Taylor Singletary taylorsinglet...@twitter.com
wrote:
 There are no search within a set capabilities really in the Twitter API or
 Search API. There are a few approaches you can take, but all of them defer
 the search part of operation to you and you'll have to accept that you'll
 not have the full possible dataset to search against.

 One popular way to search within a given set of users is to assemble a
 Twitter List containing the users of interest, paginate through the List
 timeline as your needs (and the data supply) allows, and then perform the
 search against the tweets/metadata retrieved, acknowledging that a list
 doesn't comprise all of the tweets (or any of the retweets) authored by the
 users on the list (@replies / tweets beginning with a @mention to users not
 belonging to the list are excluded).

 Other methods are retrieval of various (user) timelines, merging them
 together, then searching against.

 The most efficient way to collect tweets for a given set of public users
 when historical tweets are not important is to use the follow feature of
 the Streaming API.

 Taylor

 On Wed, Jan 12, 2011 at 10:22 AM, Abhi abhishek2j...@gmail.com wrote:
  Thanks. I looked at it but It just allows me to search for twitter
  feed from one user. I want to be able to search for twitter feed from
  multiple users at once.

  On Jan 12, 12:30 am, Mauro Asprea mauroasp...@gmail.com wrote:
   Hi you can take a look at  http://dev.twitter.com/doc;)

   On Wed, Jan 12, 2011 at 7:13 AM, Abhi abhishek2j...@gmail.com wrote:
Hi, I am New to the Twitter search API and was wondering if someone
can please help me on where to find some guidance on how to use
Twitter Search API to find tweets from a group of twitters.

Thanks for all the help in advance

--
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

   --
   Mauro Sebastián Asprea

   E-Mail: mauroasp...@gmail.com
   Mobile: +34 654297582
   Skype: mauro.asprea

   Algunos hombres ven las cosas como son y se preguntan porque. Otros
  sueñan
   cosas que nunca fueron y se preguntan por qué no?.
   George Bernard Shaw

  --
  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] user streams example

2011-01-13 Thread jhollingworth
Hi,

I've been looking around but have so far been unable to find any code
examples of using user streams (http://dev.twitter.com/pages/
user_streams). I might just be being a little dumb but i've had a look
at a few libraries in different languages and none seem to mention
them.

Also do user streams need to be turned on per account? I've been
messing around with some of my own code but my request is just
hanging. I'm trying to work out if it's something wrong with my
implementation or if I've got to be white listed?

Thanks,
James

-- 
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 example

2011-01-13 Thread M. Edward (Ed) Borasky
On Thu, 13 Jan 2011 16:10:13 -0800 (PST), jhollingworth 
jamiehollingwo...@gmail.com wrote:

Hi,

I've been looking around but have so far been unable to find any code
examples of using user streams (http://dev.twitter.com/pages/
user_streams). I might just be being a little dumb but i've had a 
look

at a few libraries in different languages and none seem to mention
them.

Also do user streams need to be turned on per account? I've been
messing around with some of my own code but my request is just
hanging. I'm trying to work out if it's something wrong with my
implementation or if I've got to be white listed?

Thanks,
James


The Perl CPAN module AnyEvent::Twitter::Stream is what I use to access 
User Streams. I don't remember whether there's any sample code there or 
not. I'm pretty sure the Phirehose PHP library also has User Streams 
code but I'm not a PHP programmer.


What language are you working in?
--
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] Re: Return number of tweets for an account

2011-01-13 Thread David
Hi Ciprian,

The number of tweets is listed in the statuses_count field for the user. You 
can access this by hitting the /users/show endpoint of the API.

For example:

http://api.twitter.com/1/users/show.json?screen_name=dtran320

Then look at the 'statuses_count' parameter.

Best,
David 

-- 
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: Return number of tweets for an account

2011-01-13 Thread @epc
On Jan 13, 11:06 pm, David dtran...@gmail.com wrote:
 The number of tweets is listed in the statuses_count field for the user. You
 can access this by hitting the /users/show endpoint of the API.

Note that that only counts tweets still in twitter’s database.  If a
user deletes a tweet, the count will go down.
If I tweet 1000 times and then delete 999 tweets, my tweet count will
read 1.

--
-ed costello

-- 
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