[twitter-dev] Re: how to get the followers of a given user?

2010-09-10 Thread Victor Fang
Thanks Taylor I'm using Firefox, is that the the dev tool you guys use? thanks! On Sep 10, 10:36 am, Taylor Singletary wrote: > Yes, the users/lookup method requires OAuth-based authentication. > > Thanks, > Taylor > > On Thu, Sep 9, 2010 at 5:48 PM, Victor Fang wrote: > > Hi, Taylor, tha

[twitter-dev] REST API Server Headers wrong?

2010-09-10 Thread yaemog Dodigo
Hello, It occurs from time to time that the rest api servers don't deliver responses, and I'm not complaining about that. However, why would the server answer with a 500 Http status code, a content type of application/json and the content being the html error page. E.g., GET /1/statuses/friends

Re: [twitter-dev] j2me twitter

2010-09-10 Thread Amrit Kshetri
Hello there. I already tried those, but no success. Do you have other way to solve my problem? -- 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/is

[twitter-dev] Twitter application and opensource

2010-09-10 Thread Andrea Stagi
I can't to understand real damages an hacker could make if would obtain oAuth keys in an application...Most of application are released under GPL licence ( they're also very popular ) and nothing bad is happened yet...It seems to be easy extract keys from compiled code too..I've read the article of

[twitter-dev] Re: Open Source Android/Twitter Application

2010-09-10 Thread Bess
Yes you can. I can verify I did it myself from scratch and have also tested other Android app. Just read everything above in this email thread. On Sep 10, 12:27 am, shubham patni wrote: > I want to integrate Twitter with Android app, how can i dot this. > Please suggest me > > On Aug 17, 1:48 pm

[twitter-dev] Search across Twitter Lists

2010-09-10 Thread Quy
I would like to search for keywords across tweets from a Twitter List? Is there an easy way to do this? -- 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

Re: [twitter-dev] Request Token Failure

2010-09-10 Thread Tom van der Woerdt
You don't need request_token for Echo - unless you don't have the user's credentials yet, but in that case you aren't using OAuth Echo. Tom On 9/11/10 1:13 AM, AS_Drone wrote: > We have been trying to implement the OAuth Echo method, but cannot get > a request-token. It returns with "Failed to v

[twitter-dev] Request Token Failure

2010-09-10 Thread AS_Drone
We have been trying to implement the OAuth Echo method, but cannot get a request-token. It returns with "Failed to validate oauth signature and token". Below is our Post data. Our signature aligns with data on the API document. Any thoughts as to why we fail to oauth signature? Post data: Reque

Re: [twitter-dev] j2me twitter

2010-09-10 Thread Ernandes Jr.
Hi!!! Please, take a look at www.twitterapime.com I believe you will find all you need there. Regards, Ernandes On Fri, Sep 10, 2010 at 12:12 AM, j2me wrote: > Hello everyone. > > I wanted to build a twitter application for mobile phone. But as > other, I got stuck in oAuth authentication of

Re: [twitter-dev] Re: Displaying Friends Tweets Requires a log in each time

2010-09-10 Thread Taylor Singletary
Hi Ed, This is the perfect scenario for: a) You'll want to use OAuth to authorize a single account (the "owner" of the friends_timeline) http://dev.twitter.com/pages/oauth_single_token b) You'll store the access token for the owner of the account directly in the script you use to fetch friends_ti

[twitter-dev] Re: Displaying Friends Tweets Requires a log in each time

2010-09-10 Thread contact.edmur...@gmail.com
Hi there, thanks for responding- I'm using the following: $content = $connection->get("statuses/ friends_timeline", array()); This is a PHP script that displays friends tweets, as this is for a company website, and we only follow certain employees with permission of course. Our home company tim

Re: [twitter-dev] Oauth problems?

2010-09-10 Thread Tom van der Woerdt
You should encode the values in the Authorization: header. Tom On 9/10/10 11:50 PM, MTCoder wrote: > i have written code (working code for a client app) up to the point of > posting/reading to a twitter timeline. > The user has allowed my app access and i have the token and token > secret. > Als

[twitter-dev] Oauth problems?

2010-09-10 Thread MTCoder
i have written code (working code for a client app) up to the point of posting/reading to a twitter timeline. The user has allowed my app access and i have the token and token secret. Also i have double checked the signature and everything else and they all seem correct ( http://hueniverse.com/200

Re: [twitter-dev] 01:Authentication credentials were missing or incorrect. / ColdFusion + Twitter4J

2010-09-10 Thread Tom van der Woerdt
Do you get a confirmation on the callback after request_token? Tom On 9/10/10 9:55 PM, Andy Reid wrote: > Hi -- > > I'm trying to get my oAuth working with twitter4j and ColdFusion. > > Here's the code I use: > > > > > > Twitter.setOAuthConsumer(TwitterConsumerKey,TwitterConsumerSecret)>

[twitter-dev] 01:Authentication credentials were missing or incorrect. / ColdFusion + Twitter4J

2010-09-10 Thread Andy Reid
Hi -- I'm trying to get my oAuth working with twitter4j and ColdFusion. Here's the code I use: It loads fine, and brings me to the Twitter authentication screen. I click "Agree" and am redi

Re: [twitter-dev] Authentication failing for status POST in C#

2010-09-10 Thread Tom van der Woerdt
I like code, but I like seeing the results even more :-) Can you provide us (the twitter-dev list) with these : * A base string * A full request and response Tom On 9/10/10 8:22 PM, hyronymous wrote: > So far as I can tell, I'm following the instructions accurately > according to http://dev.twi

[twitter-dev] Authentication failing for status POST in C#

2010-09-10 Thread hyronymous
So far as I can tell, I'm following the instructions accurately according to http://dev.twitter.com/pages/auth, but regardless of any minute variations, I keep getting a 401, authorization error on posting (i.e. the method pushMessage() fails). So far as I can tell, I'm not doing anything different

[twitter-dev] Re: Problems on production server with same code

2010-09-10 Thread Angelus
That was exactly the problem. Server was about 20 min ahead of twitter's time, working perfectly now. Thanks for the help. On Sep 10, 2:20 pm, Colin Hill wrote: > Angelus, >    I ran into this the other day. Check the clock on your production > system and sync it to your favorite authorotative t

Re: [twitter-dev] Problems on production server with same code

2010-09-10 Thread Taylor Singletary
A quirk of our system is that our nonce and time validation are intertwined. It's most likely that the clock on your production system is either ahead or behind by Twitter's by +/- 15 minutes.. Your production machines might need a clock update. Thanks, Taylor On Friday, September 10, 2010, Ange

Re: [twitter-dev] Problems on production server with same code

2010-09-10 Thread Colin Hill
Angelus, I ran into this the other day. Check the clock on your production system and sync it to your favorite authorotative time source (tock.usno.navy.mil or whatever) to bring it in line with the twitter servers which presumably use one of the stratum 1 NTP time sources. Too large a time skew

[twitter-dev] Problems on production server with same code

2010-09-10 Thread Angelus
Hello, I'm migrating our current sistems that used old basic authentication on twitter to OAuth and I'm having quite a problem. In our php projects I'm using a TwitterOAuth lib, very well written and worked perfectly on my development machine. Unfortunately the same code fails to work on our prod

[twitter-dev] Need some help wiht Twitter and ColdFusion

2010-09-10 Thread Ennio
I'm trying to make a script that will automatic post from my blog to my Twitter account. I have everything registered on the Twitter and I have the TwitterConsumerKey, TwitterConsumerSecret. Here is my question: If I run this script, it will leave my website go to Twitter and ask if I want to ac

Re: [twitter-dev] Entities?

2010-09-10 Thread Taylor Singletary
We'll have entities support working better soon, it took time to identify the cause of sporadic missing entities. As you've noted, it's always a good idea to code defensively both for fields that may not exist yet, and especially in the case of something new like entities, for the event that they'l

[twitter-dev] Entities?

2010-09-10 Thread Andrew W. Donoho
Folks, Entities are still borked. And have been, by my reckoning, for over 12 hours now. As my iPad product uses entities and is now crashing in the field, I would like Twitter to do one of two things. Obviously, fixing entities is my preferred choice. Failing that though, please turn e

Re: [twitter-dev] Displaying Friends Tweets Requires a log in each time

2010-09-10 Thread Taylor Singletary
Hi, It depends on how you're accessing and displaying the tweets... are you trying to show your home timeline (the tweets you typically see on twitter.com's home page while logged in), or are you trying to show your own tweets, or are you trying to show someone else's tweets? Showing your own hom

Re: [twitter-dev] Re: how to get the followers of a given user?

2010-09-10 Thread Taylor Singletary
Yes, the users/lookup method requires OAuth-based authentication. Thanks, Taylor On Thu, Sep 9, 2010 at 5:48 PM, Victor Fang wrote: > Hi, Taylor, thanks for your reply. > > I've tried out some of them but no luck > I followed the instructions in this webpate: > http://dev.twitter.com/doc/get/us

Re: [twitter-dev] /statuses/update.xml Read-only application cannot POST error show

2010-09-10 Thread Taylor Singletary
Hi there, You may have issued your access token at some point in time when the application was marked as read-only. The best thing to do in this scenario is go to http://twitter.com/settings/connections to first sever the access token, then re-issue an access token while your application is in rea

Re: [twitter-dev] xAuth approval times

2010-09-10 Thread Taylor Singletary
Hi Alex, We do our best to keep the wait under 72 hours, but there are times it will take longer. Taylor On Fri, Sep 10, 2010 at 4:33 AM, supersonicduck wrote: > Hi, > > I've totally missed the announcement that basic authentication will be > disabled end of August, so now my iPhone app's twitt

Re: [twitter-dev] How to specify maximum results in the RSS query for twitter

2010-09-10 Thread Taylor Singletary
The best way to accomplish this, and the way that is most likely to stand the test of time, is to fetch the RSS feed of a user timeline like any other API method. Instead of the URL format you're using now, I would recommend: http://api.twitter.com/1/statuses/user_timeline.rss?screen_name=xxx

Re: [twitter-dev] Tweeting with Net::Twitter + OAuth

2010-09-10 Thread Marc Mims
* wkossen [100910 06:45]: > > my $client = Net::Twitter->new( > consumer_key => $ckey, > consumer_secret => $csec, > access_token => $atok, > access_secret => $asec, > ); You need to include the OAuth trait: my $client = Net::Twitter->new( traits => ['OAuth', 'API::REST'

Re: [twitter-dev] Re: OAuth limit exceeded and error message reads 'Basic authentication is not supported'?

2010-09-10 Thread Taylor Singletary
We have some lingering bugs around where the wrong error is thrown in a few instances. Hope to have them tracked down and rectified as soon as we can. Taylor On Fri, Sep 10, 2010 at 6:12 AM, ilmart wrote: > Hi Tim, > > I ran into the same problem last week. To fix the problem I mashed > togethe

[twitter-dev] How to specify maximum results in the RSS query for twitter

2010-09-10 Thread jaspritsgill
Okay, so I came across a few posts which did talk about this but I didnt find my answers in those . I am using RSS query in my App for getting the tweets. It seems twitter has the number of results to an RSS query fixed to 20. Is there a way I can specify custom number of results in the query? I

[twitter-dev] Re: OAuth limit exceeded and error message reads 'Basic authentication is not supported'?

2010-09-10 Thread ilmart
Hi Tim, I ran into the same problem last week. To fix the problem I mashed together a little app available at http://twitter2rss.com This app lets you read your Twitter home tweets via RSS once more. No registration is required, all it takes is you to authorize the app with Twitter (all explained

Re: [twitter-dev] User Streams or Site Streams?

2010-09-10 Thread Rainux Luo
Thanks! On Wed, Sep 8, 2010 at 10:28 AM, John Kalucki wrote: > As long as you meet the general Terms of Service and follow the Developers > rules you should be fine. > > > On Tue, Sep 7, 2010 at 12:51 PM, Rainux Luo wrote: >> >> Hey John, thanks for your detailed explanation. Another problem I'm

[twitter-dev] xAuth approval times

2010-09-10 Thread supersonicduck
Hi, I've totally missed the announcement that basic authentication will be disabled end of August, so now my iPhone app's twitter functionality is broken. I've submitted a request to get access to xAuth authentication two days ago and still didn't get a response. What kind of timeframe are we look

[twitter-dev] Tweeting with Net::Twitter + OAuth

2010-09-10 Thread wkossen
What am I doing wrong here? trying to tweet an url and a text to an account... #!/usr/bin/perl use Net::Twitter; # necessary strings are available in environment... $iurl = $ENV{iurl}; $itxt = $ENV{itxt}; $ckey = $ENV{ckey}; $csec = $ENV{csec}; $atok = $ENV{atok}; $asec = $ENV{asec}; # this us

[twitter-dev] /statuses/update.xml Read-only application cannot POST error show

2010-09-10 Thread Shambhu
/statuses/update.xml Read-only application cannot POST error show my application work in off line (localhost) but not work in online twitter consul i test all parameter it work in application setting type is read write and type set to browser. have you any idea ? -- Twitter developer docum

[twitter-dev] How to get more than 2 white IPs?

2010-09-10 Thread jae
Hi, I'm in charge of developing social marketing tools. So It's very important that it collects data from Twitter. I need at least 5 white lists. But as far as I know, they give just 2 white lists at most. So, my question is, Is there any ways that can get more than 5 whitelists? Should I do busi

[twitter-dev] Re: Open Source Android/Twitter Application

2010-09-10 Thread shubham patni
I want to integrate Twitter with Android app, how can i dot this. Please suggest me On Aug 17, 1:48 pm, Bess wrote: > http://code.google.com/p/twitter-for-android/is blocked and can't be > accessed > > But I find this light-weight open sourceAndroidproject. It seems > like it covers OAuth. > > ht

[twitter-dev] Android Twitter Integration ?

2010-09-10 Thread shubham patni
Hi friends, I want to integrate twitter with my Android Application. I used some code but that are not working. Have any new twitter API . please suggest me way how can i do this. Thanx in Advance -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Tw

[twitter-dev] Re: Obtain email address after authentication

2010-09-10 Thread shanew
Tom, OAuth definitely sells itself as more than just a non-password-based authorization protocol. Just as important as not sharing the user's password is the value/usefullness of the information being accessed to service consumers. Look at where OAuth 2.0 is headed with the inclusion of scope para

[twitter-dev] Re: List of all users who tweeted in the last 30 seconds

2010-09-10 Thread Karthik
Search API can return only 1500 recent tweets. Real pain is you have to poll the API 15 times (rpp=100) Look into the Streaming API. There are lower access levels which can give you certain proportion of tweets. http://dev.twitter.com/pages/streaming_api_methods#statuses-sample But for getting al

[twitter-dev] Re: Simple status update

2010-09-10 Thread Gerard M
@Marc Thank you! Looks easy enough.. will give it a shot G. On Sep 9, 12:22 pm, Marc Mims wrote: > * Gerard M [100909 05:47]: > > > Any Perl equivalent for "three lines" ?  I can convert to PHP if > > needed, but it is a bit of a hassle... > > Yes. > > See the example code > here:http:/