Re: [twitter-dev] Straight Tweeting Directly To Twitter

2010-12-24 Thread Scott Wilcox
Hello, I've placed a few examples on Github. Take a look at: https://github.com/dordotky/oauth-examples/blob/master/single-account-use/update-status.php Scott. On 23 Dec 2010, at 21:29, Resolute Innovations wrote: I have an app on my website. Once a user posts a message to this app I would

[twitter-dev] Re: Intermittent 401 errors calling access_token

2010-12-24 Thread Marc Mims
Here's another one: ### request_token request ### GET https://api.twitter.com/oauth/request_token Authorization: OAuth

[twitter-dev] searching for 50 000 words

2010-12-24 Thread Andrew
I am working on a website that generates ideas for brandnames. As part of this website I need to search twitter for 50 000 words so that I can analyse the results and use them in one of my algorithms. Do I need to contact Twitter staff to do this? There are rate limits on some APIs and not sure if

[twitter-dev] Ask about api parameters trim_user and include_entities understanding.

2010-12-24 Thread jianguo liao
My English not very good, good point of our domestic as long as English people are highly paid in the enterprise, not our domestic technology, had to learn other people's things, I recently had a android and Twitter are interested in is the most trouble With interest he can not drop, no way, I

[twitter-dev] dose twitter has xoauth api?

2010-12-24 Thread shiyuan ding
when we use the oauth api ,we should get a PIN through browser before login, I want to know whether has the api witch give me a signin control that I can skip the getting PIN step。 many thanks -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter:

Re: [twitter-dev] Help!! please. How to collect old data by Twitter API

2010-12-24 Thread Tom van der Woerdt
I'll be simple: you can't achieve this with the Twitter API. Maybe other APIs can help you, but I don't know one. Tom On 12/24/10 6:13 AM, Chris Bang wrote: I’m developing a program to collect historical data or twits from Twitter using Twitter search API and Twitter4J which means the

Re: [twitter-dev] searching for 50 000 words

2010-12-24 Thread Tom van der Woerdt
Streaming API does have a limit on keywords, yes. I think it's 400. You should contact Twitter (in this case probably a...@twitter.com) for increased amounts of keywords, although this will probably cost you some money. (In case of 5 words, probably a lot) Tom On 12/24/10 6:20 AM,

Re: [twitter-dev] dose twitter has xoauth api?

2010-12-24 Thread Tom van der Woerdt
Yes, you can use the normal OAuth flow which allows you to use a redirect URL. Alternatively, you could use the xAuth procedure to exchange an username and password for a set of OAuth credentials, although this method is a method that should only be used as a last resort (like cases where

Re: [twitter-dev] Help!! please. How to collect old data by Twitter API

2010-12-24 Thread M. Edward (Ed) Borasky
On Fri, 24 Dec 2010 18:53:12 +0100, Tom van der Woerdt i...@tvdw.eu wrote: I'll be simple: you can't achieve this with the Twitter API. Maybe other APIs can help you, but I don't know one. Tom There are some services that have indexed tweets for more than Twitter's default of seven days. I

[twitter-dev] REMOVE ME

2010-12-24 Thread SeriousSamP
-- 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:

Re: [twitter-dev] REMOVE ME

2010-12-24 Thread Adam Cloud
You opted in, you can opt-out http://groups.google.com/group/twitter-development-talk On Fri, Dec 24, 2010 at 1:04 PM, SeriousSamP seriouss...@yahoo.co.ukwrote: -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter:

Re: [twitter-dev] Help!! please. How to collect old data by Twitter API

2010-12-24 Thread Adam Green
It depends on how you want to select these tweets. If you need to find tweets based on keywords without knowing the users, then the search API won't go back more than about 7 days, as you say. If you want tweets from users that you have already identified, you can get up to 3,200 old tweets from

Re: [twitter-dev] searching for 50 000 words

2010-12-24 Thread Adam Green
It depends on how fast you need these results. The streaming API lets you collect tweets for up to 400 keywords at one time. You can divide your keywords into sets of 400 each, and collect tweets for 2 hours per set. That will let you sample tweets for 50,000 keywords over a 10 day period. If you

[twitter-dev] J2ME client to twitter

2010-12-24 Thread Kalpa Welivitigoda
Hi all, I though to develop a J2ME twitter client and wrote some code. I got stuck in authentication step. http://twitter4j.org/en/code-examples.html I tried this but there's no BufferedReader in J2ME. I read that pin type authentication is better for mobile apps. But found no proper guide.