[twitter-dev] Re: Anyone updating email address from API?

2009-04-24 Thread Arik Fraimovich
We at Topify thought of using that method, but decided not to. It seems to be too intrusive to change someone's email that way. I prefer the user does that on his own. Actually, I think they should deprecate this method - never seen an application that uses it and don't want to stumble at one

[twitter-dev] Re: OAuth whitelisting?

2009-04-24 Thread Doug Williams
Your application's IP-based whitelisting will apply to all calls originating from the IP address. This includes unauthenticated and authenticated methods, regardless of user. Additionally, your application's authenticated calls made on behalf of a user will not count toward their 100 credits

[twitter-dev] Social Graph Dump

2009-04-24 Thread Lakshman Prasad
Hi, Is there a dump of the twiiter social graph available anywhere, rather than making so many api calls to obtain the same? Thanks. -- Regards, Lakshman becomingguru.com lakshmanprasad.com

[twitter-dev] Re: oAuth is BACK!

2009-04-24 Thread Mario Menti
On Fri, Apr 24, 2009 at 1:00 AM, dean.j.robinson dean.j.robin...@gmail.comwrote: I posted this yesterday, but the post appeared to vanish into the ether, during the OAuth 'outage' my dev version of Hahlo 4 (which uses OAuth) continued to work fine, is this because I was already logged in and

[twitter-dev] Now that oAuth tokens expire, how can I do stuff for the user when they're away?

2009-04-24 Thread @pud
Hi, I realize a precaution taken during the recent oAuth scare was to expire access tokens relatively quickly. Let's say I have a service that automatically sends tweets for a user on a scheduled basis (like when they update their blog). The last token I have is 48-hours old, and is expired.

[twitter-dev] Re: Now that oAuth tokens expire, how can I do stuff for the user when they're away?

2009-04-24 Thread Paul Kinlan
I belive the request tokens are expired quickly and not the access tokens. Paul. 2009/4/24 @pud pkap...@gmail.com Hi, I realize a precaution taken during the recent oAuth scare was to expire access tokens relatively quickly. Let's say I have a service that automatically sends tweets for

[twitter-dev] Re: Now that oAuth tokens expire, how can I do stuff for the user when they're away?

2009-04-24 Thread Matt Sanford
Hi there, It is indeed request tokens and not access tokens. Thanks; – Matt Sanford / @mzsanford Twitter API Developer On Apr 24, 2009, at 06:52 AM, Paul Kinlan wrote: I belive the request tokens are expired quickly and not the access tokens. Paul. 2009/4/24 @pud

[twitter-dev] Re: friends_timeline and following

2009-04-24 Thread Malcolm
This is definitely not fixed. I was having this problem before on the json side. Seems fine on the xml side of things. I suggest you try to implement using xml rather than json. On Apr 24, 1:45 am, Doug Williams d...@twitter.com wrote: This is still being worked on. Follow issue 419 for status

[twitter-dev] Re: help with oauth status update utf8 issue

2009-04-24 Thread alon
could this be a result of me encoding the text using json for ajaxing? On Apr 24, 4:20 am, alon alon.car...@gmail.com wrote: hello, i've successfully managed to login to my webapp using twitter oauth and updated my status on twitter. problem is that it only works fine with english. when i

[twitter-dev] Re: Update API (with OAuth) failed on Unicode tweet

2009-04-24 Thread alon
can someone assist with the php library? what todo? On Apr 16, 6:18 pm, Mario Menti mme...@gmail.com wrote: On Wed, Apr 15, 2009 at 6:11 PM, Mario Menti mme...@gmail.com wrote: Thanks Guan - perhaps it's an issue with the signature base string not being encoded correctly at my end... let

[twitter-dev] Re: Twitter's official comment on our disabling of OAuth

2009-04-24 Thread Shannon Whitley
Thanks for all your hard work, Matt. In one of my solutions, I am getting around the absence of the oauth_callback by using the referrer. I know referrer is unreliable, but I'm going with it for now. When the call comes back from the authorize page, the referrer still contains the information

[twitter-dev] HTTP Status 0 on update_status?

2009-04-24 Thread Chris
Hey guys, Is anyone else having issues replying to a tweet with their applications? I am receiving a HTTP 0 status response when I have set the reply_to_id, or the tweet begins with a @username - however every other API method is working fine, including a tweet without these two variables. I

[twitter-dev] Re: OAuth whitelisting?

2009-04-24 Thread Bill Kocik
Thanks, Doug. This was what I was originally thinking, but somehow I convinced myself I was wrong. Hypothetical: It kinda sounds like if I have a large number of simultaneous users, I'm better off not being whitelisted. Say I have 1000 simultaneous users (humor me). If I'm not whitelisted, I

[twitter-dev] Re: friends_timeline and following

2009-04-24 Thread Matt Sanford
Hi there, JSON and XML both run an equal risk of being wrong at the moment. I'm taking a look at the issue [1]. Thanks; – Matt Sanford / @mzsanford Twitter API Developer [1] - http://code.google.com/p/twitter-api/issues/detail?id=474 On Apr 23, 2009, at 11:45 PM, Malcolm wrote:

[twitter-dev] Re: Twitter's official comment on our disabling of OAuth

2009-04-24 Thread Matt Sanford
Hi Shannon, There are some concerns about localhost redirection but in the mean time I recommend changing your /etc/hosts (or equivalent) so you can intercept calls on your local machine. This should also let you do development once your project launches. Thanks; – Matt Sanford /

[twitter-dev] Re: HTTP Status 0 on update_status?

2009-04-24 Thread Matt Sanford
Hi Chris, HTTP does not allow a response code of 0. I have seen the many times with PHP/cURL, as it uses HTTP 0 to indicate a timeout. Can you attempt posting a failing status via curl on the command line and see if that works? That should at least rule out any network issues.

[twitter-dev] Re: Twitter's official comment on our disabling of OAuth

2009-04-24 Thread Shannon Whitley
Thanks. That's exactly what I did. ;) On Apr 24, 7:56 am, Matt Sanford m...@twitter.com wrote: Hi Shannon,      There are some concerns about localhost redirection but in the   mean time I recommend changing your /etc/hosts (or equivalent) so you   can intercept calls on your local

[twitter-dev] Re: Rate Limit Issue?

2009-04-24 Thread DuBose Cole
Hi, Thanks for the advice once again. I've spent the day porting it over to visual studio for more flexibility and to use the example you provided as a guide. After following the gist of what the other .net user had done, I'm still experiencing the rate limit issue. I'm toying with creating an

[twitter-dev] Re: Update API (with OAuth) failed on Unicode tweet

2009-04-24 Thread Matt Sanford
Hi Alon, The main issue we've seen with extended UTF-8 is incorrect URL encoding of the values. We discussed this in depth in issue 433 [1], which I see you commented on. Without a little more information I can't really help. The information that would be most helpful is: 1. You

[twitter-dev] Re: Twitter's official comment on our disabling of OAuth

2009-04-24 Thread djMax
This is a nifty idea, I assume it's going to break when the user has to do something other than click Allow right? e.g. login... On Apr 24, 10:47 am, Shannon Whitley shannon.whit...@gmail.com wrote: Thanks for all your hard work, Matt. In one of my solutions, I am getting around the absence

[twitter-dev] Re: OAuth whitelisting?

2009-04-24 Thread Doug Williams
You are correct. Doug Williams Twitter API Support http://twitter.com/dougw On Fri, Apr 24, 2009 at 3:40 AM, Bill Kocik bko...@gmail.com wrote: Thanks, Doug. This was what I was originally thinking, but somehow I convinced myself I was wrong. Hypothetical: It kinda sounds like if I have

[twitter-dev] Re: Social Graph Dump

2009-04-24 Thread Alex Payne
No. Providing a complete picture of Twitter's social graph is not a goal of our API. We provide portions of the social graph relevant to particular users. On Fri, Apr 24, 2009 at 03:06, Lakshman Prasad scorpion...@gmail.com wrote: Hi, Is there a dump of the twiiter social graph available

[twitter-dev] Built Twitter login+tweet

2009-04-24 Thread @LiveCrunch
Looking for twitter login+tweet code / widget or whever so I can embed that with page. Any suggestions if that's duable to find? Or do I really need to roll up my sleeves and spend a lot of time reading about api and stuff :) , not big into API , just pure php dev here.

[twitter-dev] Re: Twitter's official comment on our disabling of OAuth

2009-04-24 Thread djMax
Our OAuth-based sign-in and API-using service is up: https://tools.povo.com/Profile/Signin/ Noticed another thing - Twitter isn't sending screen_name on the redirect anymore. On Apr 24, 1:33 pm, djMax djm...@gmail.com wrote: This is a nifty idea, I assume it's going to break when the user has

[twitter-dev] feature request/enhancement for friendships/exists

2009-04-24 Thread dean.j.robinson
So, if I've got two users user_a and user_b the method currently works like this (from api wiki): Tests for the existence of friendship between two users. Will return true if user_a follows user_b, otherwise will return false. Now, if I also wanted to know if user_b follows user_a I currently

[twitter-dev] Re: feature request/enhancement for friendships/exists

2009-04-24 Thread dean.j.robinson
actually only one of the two was deleted, sorry my bad, its just not showing up in my google groups recent activity. On Apr 25, 1:56 pm, dean.j.robinson dean.j.robin...@gmail.com wrote: So, if I've got two users user_a and user_b the method currently works like this (from api wiki): Tests