[twitter-dev] How to get bigger profile images

2010-12-13 Thread Christian Fazzini
How do apps like Twitpic and WeFollow use larger sized profile images?? The Twitter API's largest profile image is 73x73 (http:// dev.twitter.com/doc/get/users/profile_image/:screen_name) -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter:

[twitter-dev] Re: How to get bigger profile images

2010-12-13 Thread Christian Fazzini
How would I get 128x128? i.e. from http://a3.twimg.com/profile_images/290187007/n500024856_39228_3390_reasonably_small.jpg There is no indication of this in the API anywhere On Dec 13, 4:04 pm, Christian Fazzini christian.fazz...@gmail.com wrote: How do apps like Twitpic and WeFollow use larger

Re: [twitter-dev] Re: How to get bigger profile images

2010-12-13 Thread Tom van der Woerdt
Actually, /1/users/profile_image/tvdw returned my 500x500 image.. All I did was upload it at twitter.com like any other user would. Tom On 12/13/10 9:10 AM, Christian Fazzini wrote: How would I get 128x128? i.e. from

[twitter-dev] Re: How to get bigger profile images

2010-12-13 Thread Christian Fazzini
I know that. Thats not what I am asking for. I am wondering how Twitpic is able to get 128x128 when we can only get 73x73 as the largest thumbnail. For example. Image I originally uploaded is stored at this url. http://a3.twimg.com/profile_images/290187007/n500024856_39228_3390.jpg Twitpic uses:

Re: [twitter-dev] Re: How to get bigger profile images

2010-12-13 Thread Tom van der Woerdt
Well, the API returns (in my case) http://a3.twimg.com/profile_images/1079883403/_MG_0016_normal.jpg. Replacing _normal.jpg with _reasonably_small.jpg (so that it becomes http://a3.twimg.com/profile_images/1079883403/_MG_0016_reasonably_small.jpg) seems to work. Tom On 12/13/10 10:15 AM,

[twitter-dev] Re: How to get bigger profile images

2010-12-13 Thread Christian Fazzini
Ok, how do I connect to the Twitter API to get the reasonably small size? http://dev.twitter.com/doc/get/users/profile_image/:screen_name only accepts the following options: mini, bigger, normal On Dec 13, 5:40 pm, Tom van der Woerdt i...@tvdw.eu wrote: Well, the API returns (in my

Re: [twitter-dev] Re: How to get bigger profile images

2010-12-13 Thread Tom van der Woerdt
A quick look on Google gave me this code : $(#profile_image).html('img src=' + profile_image.replace('normal', 'reasonably_small') + ' /'); So just get the normal one and replace it with reasonably_small. (Of course, the above code isn't perfect, as it will also match normal in the rest of

[twitter-dev] Re: How to get bigger profile images

2010-12-13 Thread Christian Fazzini
So I would have to use regex or some kind of text function to replace? A bit dirty. Why isn't reasonably small one of the options in the API? Is this deprecated? On Dec 13, 5:49 pm, Tom van der Woerdt i...@tvdw.eu wrote: A quick look on Google gave me this code : $(#profile_image).html('img

[twitter-dev] Re: Storing multiple tokens in cookie: can I use ampersand?

2010-12-13 Thread jaronbarends
Ok, thanks! I'm going to try that. jarón On 12 dec, 20:14, Tom van der Woerdt i...@tvdw.eu wrote: The best way is to urlencode() the key and secret separately, and then separating them with a space. Tom On 12/12/10 8:07 PM, jaronbarends wrote: I have a webapp in php without any database

Re: [twitter-dev] Re: Verify twitter with ASP.NET

2010-12-13 Thread Chief
If I understand correctly what you suggested, it's still something the users can fake. A user can say @aplusk (Ashton Kutcher) is his username and that's fake. On Mon, Dec 13, 2010 at 7:46 AM, Robbie Coleman rob...@robnrob.com wrote: It is totally possible Chief, but it just seems a bit

[twitter-dev] Re: What is is_translator element in user object?

2010-12-13 Thread Yusuke
Any comment? Thanks, Yusuke On Dec 9, 6:28 pm, Yusuke Yamamoto yus...@mac.com wrote: Hi, As I stated in the subject, what is is_translator element found in user object? Thanks in advance, -- Yusuke Yamamoto yus...@mac.com this email is: [x] bloggable/tweetable [ ] private follow me

Re: [twitter-dev] Re: What is is_translator element in user object?

2010-12-13 Thread Tom van der Woerdt
From time to time, people can get the chance to translate parts of Twitter into their native language. These people are translators. Tom On 12/13/10 3:51 PM, Yusuke wrote: Any comment? Thanks, Yusuke On Dec 9, 6:28 pm, Yusuke Yamamotoyus...@mac.com wrote: Hi, As I stated in the subject,

Re: [twitter-dev] user stream best practices

2010-12-13 Thread John Kalucki
Roughly: If the tweet is from a following, place it in the home timeline. If the tweet refers to the user (to or from), or contains the @screenname place it in mentions If it's a message - messages. What remains is probably a track term. -John Kalucki http://twitter.com/jkalucki Twitter, Inc.

[twitter-dev] Re: Twitter4j OAuth on Android is Simple

2010-12-13 Thread Mathias Lin
Hi Mukesh, thanks for sharing the code! One question I got regarding the callback url: in your sample you're using the callback url myapp://mainactivity, but how can you actually register such callback url that doesn't start with http on twitter? When I try to register such url in my app

[twitter-dev] Curious to know if this is the right behavior

2010-12-13 Thread satinder rana
Hi. I am new to using twitter apis to get the tweets from a particular user. But while trying to fetch the tweets using http://twitter.com/statuses/user_timeline/user.json?callback=twitterCallback2amp;count=10 or similar url, I was able to retrieve tweets from users even if the tweets were

Re: [twitter-dev] Curious to know if this is the right behavior

2010-12-13 Thread Tom van der Woerdt
Not seeing that behavior here, when not using OAuth. Of course, if you use OAuth, you can view the tweets of the people the user is following.. (Test URL I used is: http://twitter.com/statuses/user_timeline/elinetabak.json?callback=twitterCallback2count=10) Tom On 12/13/10 8:23 PM,

[twitter-dev] Re: Curious to know if this is the right behavior

2010-12-13 Thread satinder rana
Thanks Tom I think I should go through the OAuth for a better understanding of how it works :) Thank you for a prompt reply. Regards On Dec 14, 12:38 am, Tom van der Woerdt i...@tvdw.eu wrote: Not seeing that behavior here, when not using OAuth. Of course, if you use OAuth, you can view the

[twitter-dev] Twitter incorrectly oEmbedding Github gists

2010-12-13 Thread Ted Han
Hey dudes, Since there's no where else to post this news, i thought i'd mention that links like this: http://twitter.com/#!/dojo4/status/13323833742204928 Do not correctly oembed gists. Having discussed the issue with github, they rightly point out that their endpoint is correctly

Re: [twitter-dev] Twitter incorrectly oEmbedding Github gists

2010-12-13 Thread Tom van der Woerdt
Seems to work fine here : http://ygm.be/fyjhMn (image, 1280x800, 139KB) Tom On 12/13/10 8:56 PM, Ted Han wrote: Hey dudes, Since there's no where else to post this news, i thought i'd mention that links like this: http://twitter.com/#!/dojo4/status/13323833742204928 Do not correctly oembed

[twitter-dev] search and profile in the same widget

2010-12-13 Thread jlesidt
can I have both search and profile type in the same twitter widget -- 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

[twitter-dev] Simple post from a web app

2010-12-13 Thread Gankenstein
Extreme newbie question. I just registered my web app to my twitter account. I want to programmatically post to the twitter account from the web application. It is written in ASP.NET / C#. I am looking for the most direct how-to document or examples. Thanks in advance. -- Twitter developer

[twitter-dev] @Anywhere follow and update events?

2010-12-13 Thread Jim Spath
Hi, I am using the hovercards and T.Status.update() functionality in @Anywhere. I was wondering if it possible to specify event callbacks when the user has successfully followed or tweeted. I've looked through the documentation and searched and didn't seen anything, but maybe I missed

[twitter-dev] How to pull tweets excepting all that include @username and/or are Retweets?

2010-12-13 Thread Guillermo
Hi guys, Looking to see if anyone knows how to pull only tweets that are plain text or external links, but dont have any @username and/or retweets on them. I have a jquery that pulls a search for tweets based on a keyword and it streams it in a cool layout, but the tweets are so full of these @s

Re: [twitter-dev] How to pull tweets excepting all that include @username and/or are Retweets?

2010-12-13 Thread Tom van der Woerdt
Just filter them out manually. As far as I know, there's no API method that gives you this information. Tom On 12/13/10 11:12 PM, Guillermo wrote: Hi guys, Looking to see if anyone knows how to pull only tweets that are plain text or external links, but dont have any @username and/or

[twitter-dev] Twitter Stream how to filter on location and terms vs. the default OR of the twitter stream

2010-12-13 Thread Pollie
HI All, I am new to the Twitter API. I am working on a project where I want to filter the Twitter stream on both the location and a set of terms. My understanding from reading the location section is by default an OR.IF I filter rain and London

[twitter-dev] How to get twitter oauth callback url returned to activity (on Android)?

2010-12-13 Thread Mathias Lin
How to get twitter oauth callback url returned to activity (on Android) when it's a callback url starting with http - or alternatively: how to register a callback url that doesn't start with http? I want to use signpost/OAuth with Twitter in my native Android app so that I have an activity

[twitter-dev] Single-Sign-On for own app and native Twitter app (like Facebook SDK)

2010-12-13 Thread Mathias Lin
Is there a way to authenticate via OAuth in a single-sign-on manner like the Facebook SDK offers? Means, that when I call the authorize url, I would come to the native Twitter app (not browser or webview), eventually login (if not yet) and allow access to my app there, then return to my own app -

[twitter-dev] Garden Hose Access

2010-12-13 Thread Cherhan
Hi all, I have been reading and trying to find some information related to the garden hose access. My question is, how do we access to the garden hose and is it now only 3% compare to the spritzer ? Is there any similar around 10~15% access because I need to use it for academic research purpose.

[twitter-dev] Re: Xauth 401 error....T^T by iOS

2010-12-13 Thread Bess
Your xAuth is not approved and activated yet - 401 error On Dec 12, 6:59 pm, Mchello mchel...@gmail.com wrote: I use this source athttps://github.com/aral/XAuthTwitterEngine first.. I register my App at dev.twitter.com and send message to a...@twitter.com .. about Xauth Key.. and i get

[twitter-dev] friendships/destroy Could not authenticate you

2010-12-13 Thread Matthew
Here's the code: $params = array('user_id'= 16685316); $oauth = new TwitterOAuth( TWITTER_OAUTH_CONSUMER_KEY, TWITTER_OAUTH_SECRET_KEY, $user-getOauthToken(), $user-getOauthTokenSecret()