Re: [twitter-dev] users/lookup.json

2011-03-06 Thread Scott Wilcox
No, you'll need to use OAuth. On 6 Mar 2011, at 02:46, NARESH JONNALA wrote: thanx mabujo, i am trying to fetch data using curl, but i don't know, how to do... could you give an example please. is any non-oauth way is there, to fetch friends info? On Sun, Mar 6, 2011 at 12:20 AM,

[twitter-dev] Creating a RESTful web service withTwitter4j Jersey

2011-03-06 Thread mahorad
I'm trying to create a service with jersey using twitter4j but when accessing the service I get the following error: A message body writer for Java type, class java.util.ArrayList, and MIME media type, application/json, was not found seems like it does not know how to serialize/deserialize tweets.

Re: [twitter-dev] users/lookup.json

2011-03-06 Thread Randolph Estebat
Naresh -- users/lookup requires authentication. You would need to OAuth with Twitter for you to get this API working. On Sat, Mar 5, 2011 at 11:04 AM, Naresh naresh.jonn...@gmail.com wrote: hi! i am very new to twitter API. my question is:

Re: [twitter-dev] follower/friend list

2011-03-06 Thread Randolph Estebat
Hi -- i'm assuming that you are using follower/ids and friends/ids. If so, you would need to provide the cursor and make a loop till you get everything. Twitter will try to provide all ids in one call if the cursor is not supplied and for users with very many followers, this will fail. On Sat,

[twitter-dev] Bigger avatar images for users/profile_image/twitter ?

2011-03-06 Thread Guillaume Gaubert
Hi ! I want to use users/profile_image/twitter to get the picture of a Twitter account. But I've seen the biggest size allowed is 73*73px. Is there a way to get the original picture or a bigger one ? Thank you, Guillaume Gaubert. -- Twitter developer documentation and resources:

[twitter-dev] Can't sign in to dev.twitter.com

2011-03-06 Thread upshot
We want to register an app (I believe this is necessary for the Streaming API to work?) but although we have no problem logging into twitter.com, we cannot log into dev.twitter.com. I don't see a link to create an account and when I click Forgot password I get a 404 error. Am I missing something

[twitter-dev] HTTP Error 420...

2011-03-06 Thread upshot
Hi, I'm trying to build my first Twitter app and we're utilizing the Streaming API. When we make a request we are getting a 420 error back. Even if we wait 80-90 seconds we are still getting this message. We're not running any other instances of this application. The application is registered

Re: [twitter-dev] Bigger avatar images for users/profile_image/twitter ?

2011-03-06 Thread Randolph Estebat
Hi -- im not sure what you specifically want to do but if are to show it in a page, just set the img width and height to your preference. On Sun, Mar 6, 2011 at 10:13 PM, Guillaume Gaubert apocalypso...@gmail.comwrote: Hi ! I want to use users/profile_image/twitter to get the picture of a

Re: [twitter-dev] Can't sign in to dev.twitter.com

2011-03-06 Thread Scott Wilcox
You should already be signed in with your Twitter account if you've come from twitter.com (and were signed in). Failing that, goto http://dev.twitter.com/login and sign in with your twitter username and password. Scott. On 6 Mar 2011, at 15:39, upshot wrote: We want to register an app (I

[twitter-dev] Re: Can't sign in to dev.twitter.com

2011-03-06 Thread upshot
I was able to log in fine under Safari. Using Firefox on the Mac, it appears Twitter has some bugs with recognizing logins under dev.twitter.com. Very strange. - Dustin On Mar 6, 12:02 pm, Scott Wilcox sc...@dor.ky wrote: You should already be signed in with your Twitter account if you've

Re: [twitter-dev] Re: Can't sign in to dev.twitter.com

2011-03-06 Thread Cameron Kaiser
I was able to log in fine under Safari. Using Firefox on the Mac, it appears Twitter has some bugs with recognizing logins under dev.twitter.com. Very strange. I had a few users report this to me intermittently, but interestingly they could not log in with Safari (they had to use Firefox).

[twitter-dev] Re: Bigger avatar images for users/profile_image/twitter ?

2011-03-06 Thread Guillaume Gaubert
Thank you for your response. But if I do that I get a pixelated and blurry picture. On Mar 6, 6:28 pm, Randolph Estebat raeste...@gmail.com wrote: Hi -- im not sure what you specifically want to do but if are to show it in a page, just set the img width and height to your preference. On Sun,

[twitter-dev] Migration from twitter/geo

2011-03-06 Thread @ratecred
Has anyone here done a migration from twitter/geo to simplegeo or factual? Wondering if there are any developer experiences in the process, lessons learned, etc. It looks like this is going to have to be our next *re* implementation and would love to know what people's impression of the

[twitter-dev] twitter dump where i only care about size

2011-03-06 Thread Ted Pedersen
I'd like to get somewhere around 100GB of tweets. It doesn't matter where they are from, when they were sent, etc. I'd just like to have a relatively large collection of data to use as assignment data for a class I'm teaching that uses Hadoop. Is such a collection available for download anywhere,

[twitter-dev] users/show and users/lookup returning *empty* responses

2011-03-06 Thread Dossy Shiobara
Did I miss the memo, or is users/show and users/lookup defective? They can return empty (zero-byte) responses with an HTTP 200 OK status. It's like a double-rainbow ... what does it mean? :-) For example: http://api.twitter.com/1/users/show.json?user_id=235989888 Interestingly

Re: [twitter-dev] twitter dump where i only care about size

2011-03-06 Thread Tom van der Woerdt
100GB is a lot... If the average JSON representation of a tweet takes 5 KB (and I think it might), you'd need 20 million tweets. Let's say that there are 100 million tweets sent per day (I think it's more though), and you get 1% from the sample stream (which would be 1 million). You'd have to

[twitter-dev] Re: users/show and users/lookup returning *empty* responses

2011-03-06 Thread Dossy Shiobara
I know it's Sunday night, but ... *crickets* is this thing on? Is no one else's app being impacted by this? On 3/6/11 6:17 PM, Dossy Shiobara wrote: Did I miss the memo, or is users/show and users/lookup defective? They can return empty (zero-byte) responses with an HTTP 200 OK status.

[twitter-dev] Re: twitter dump where i only care about size

2011-03-06 Thread @IDisposable
Is such a collection available for download anywhere, or is there an existing program I could use to simply record twitter data for some period of time? (I've heard about both the firehose and the streaming API, but can't seem to find anything that is ready to run with that for this

Re: [twitter-dev] Re: twitter dump where i only care about size

2011-03-06 Thread Ted Pedersen
Thanks very much! I don't know the ins and outs of Twitter's data distribution rules, but my intent is to use this strictly for classroom assignments and we will not post or distribute the data in any way. Cordially, Ted On Sun, Mar 6, 2011 at 8:55 PM, @IDisposable idisposa...@gmail.com wrote:

[twitter-dev] Re: Bigger avatar images for users/profile_image/twitter ?

2011-03-06 Thread @IDisposable
I want to use users/profile_image/twitter to get the picture of a Twitter account. But I've seen the biggest size allowed is 73*73px. Is there a way to get the original picture or a bigger one ? Avatars come in three sizes: mini = 24x24 normal = 48x48 bigger = 73x73