[twitter-dev] Re: OAuth Desktop Application Changes - Incompatibility Alert

2009-07-05 Thread Joshua Perry
Can we change the wording on the PIN page of the desktop workflow? Currently it is worded as follows: You've successfully granted access to ! Enter the following PIN when prompted by Obviously a desktop application has no idea that this flow actually completed, and hence has no way to "prompt

[twitter-dev] Re: OAuth Desktop Application Changes - Incompatibility Alert

2009-07-05 Thread Joshua Perry
Would it be possible to make the last number of the PIN a mod 10 checkdigit? This would allow applications to validate the PIN without having to do a hit to the oAuth webservice, say in the case that the user accidentally missed one of the digits when copying them from the page, or perhaps the

[twitter-dev] Using MagpieRSS Authentication with the Twitter API

2009-07-05 Thread 13eastie
I'm a relative beginner using MagpieRSS with PHP to present Twitter RSS feeds on my web-page. I've had no problems with regular feeds, but I'm struggling to get authenticated feeds to work. I'd be very grateful if someone could explain very simply how to implement the HTTP authentication to work

[twitter-dev] Re: Always returned "Failed to validate oauth signature and token"

2009-07-05 Thread muramastu
Thanks~ I've also tried "GET" method, however, it still returned same message. The following is the data: #Base String: GET%26HTTP://twitter.com/oauth/request_token%26oauth_consumer_key %3d6RfEXDtG3UBD1JFpUCPtg%26oauth_nonce %3d1246848991%26oauth_signature_method%3dHMAC-SHA1%26oauth_timestam

[twitter-dev] Re: Retrieving a list of followers and/or friends for an arbitrary user...

2009-07-05 Thread kmslogic
Along the lines of retrieving a list of an arbitrary user's friends or followers--is there any way to convert the list of numbers into screen names or user names without calling the /users/show.xml?id=x function over and over? Even for a modest friends or followers list it seems like you'd ru

[twitter-dev] Stream API : Tracker

2009-07-05 Thread Cary Knoop
Unlike the wiki documentation searching for instance for the keyword Tennis does not give results that include keywords #Tennis or @Tennis. Is this as designed or is this a bug? Cary

[twitter-dev] Stream API : Tracker and Follow together

2009-07-05 Thread Cary Knoop
I am writing an application and ideally I like to use Tracker to follow searches and Follow to follow certain users. Is it allowed to use Tracker and Follow using the same IP address with two different user accounts? Cary

[twitter-dev] Re: Always returned "Failed to validate oauth signature and token"

2009-07-05 Thread JDG
from the oauth core section on parameter encoding: Hexadecimal characters in encodings MUST be upper case.[1] Your string has %2b and %3d. You should see if that's causing it. [1] http://oauth.net/core/1.0/#signing_process On Sun, Jul 5, 2009 at 21:01, muramastu wrote: > > > Thanks~ > I've al

[twitter-dev] Re: Retrieving a list of followers and/or friends for an arbitrary user...

2009-07-05 Thread Damon Clinkscales
On Sun, Jul 5, 2009 at 10:33 PM, kmslogic wrote: > Along the lines of retrieving a list of an arbitrary user's friends or > followers--is there any way to convert the list of numbers into screen > names or user names without calling the /users/show.xml?id=x > function over and over?  Even for

[twitter-dev] Re: daily follow/unfollow/update limit

2009-07-05 Thread Doug Williams
Hi all -- The current update/follower/unfollower limits are not programmatically accessible for a given account in large part because there is little real value. Most use cases which find such information valuable is behavior that we do not feel benefits Twitter as a whole. Do you have a non-spamm

[twitter-dev] Re: Need extra parameters

2009-07-05 Thread Doug Williams
Try the page parameter. Here's the documentation to get you started [1]. 1. http://apiwiki.twitter.com/Twitter-REST-API-Method%3A-statuses-user_timeline Thanks, Doug On Fri, Jul 3, 2009 at 10:39 AM, Ravinder Chopra < ravinderc.impi...@gmail.com> wrote: > > hi > > > I think i need extra param

[twitter-dev] Re: Taken Usernames

2009-07-05 Thread Doug Williams
Josh, Check out our help article on user names [1]. If you own the trademark, please submit a ticket through the support site and explain your situation. They have a 10 day backlog so please be patient. 1. http://help.twitter.com/forums/10713/entries/14608 Thanks, Doug On Fri, Jul 3, 2009 at

[twitter-dev] Re: Stream API : Tracker and Follow together

2009-07-05 Thread Doug Williams
Yes, you can use two Streaming API methods from the same IP address. As you already know, it will require two accounts when connecting simultaneously. Thanks, Doug On Sun, Jul 5, 2009 at 9:33 PM, Cary Knoop wrote: > > I am writing an application and ideally I like to use Tracker to > follow

[twitter-dev] Re: from API

2009-07-05 Thread Harrison
Sorry, didn't mean to reply to you specifically. On Jul 5, 6:42 pm, Chad Etzel wrote: > On Sun, Jul 5, 2009 at 1:32 AM, Harrison wrote: > > > This isn't a "loophole." It's a documented function of posting the > > tweet source. It just so happens that 'web' is a valid source > > parameter. > > Ex

[twitter-dev] Re: oAuth company name

2009-07-05 Thread Doug Williams
Peter, Verification of companies is in the future for Twitter. There is no publicly released ship date to mention but it is safe to say that within the next year that this should be coming to the service. Thanks, Doug On Sat, Jul 4, 2009 at 4:47 PM, JDG wrote: > i think the only thing that wo

[twitter-dev] Re: Always returned "Failed to validate oauth signature and token"

2009-07-05 Thread muramastu
Thanks a lot! After fixing this upper case issue and I also found there is a misunderstanding about base string URL encoding, the request token can be returned now. Thanks everyone ~ On Jul 6, 1:04 pm, JDG wrote: > from the oauth core section on parameter encoding: > > Hexadecimal characters i