[twitter-dev] Re: friends/ids requires authentication now?

2010-09-17 Thread UncleYa
This error disappead when I started my app in another browser. Then I restarted my main browser (FireFox 3.6) and there were no erros too. Maybe that were cashing bugs or something else, but not Twitter API problems... Mikhail aka UncleYa On Sep 16, 6:28 pm, Taylor Singletary

[twitter-dev] Search API

2010-09-17 Thread Travis Beauvais
I have been experimenting with the search API and every search I try only goes back to Spet 12 (calls being made on Sept 16). No matter how many results there are it always stops on Sept 12. Is there a limit I don't know about? -- Twitter developer documentation and resources:

Re: [twitter-dev] 401s from http://stream.twitter.com/statuses/filter

2010-09-17 Thread John Kalucki
Streaming still supports basic auth, but User Streams and Site Streams endpoints only support OAuth. If you are getting 401s, chances are you are violating a connection policy. -John On Thu, Sep 16, 2010 at 6:27 PM, Aaron Rankin aran...@sproutsocial.comwrote: I'm seeing plenty of 401s

[twitter-dev] Problems with xAuth in Flash (Adobe AIR)

2010-09-17 Thread andy
Hello everyone, I have problems to use xAuth in a own Twitter application. I have register an Application and was activated for xauth. I have develop an Adobe AIR Application which used ActionScript 3.0. In addition, I use the ActionScript 3 library for oAuth, which is refer in the Twitter

[twitter-dev] Failed to validate oauth signature and token with xAuth

2010-09-17 Thread mlowicki
Hello!, We're implementing widget for Opera browser and we got xAuth access lately. I'm trying to get access token but without any success so far - http://dpaste.com/hold/244795/. generated POST seems to be exactly the same as on http://dev.twitter.com/pages/xauth :

[twitter-dev] How do i retrieve tweets on the friends_timeline using oauth

2010-09-17 Thread Lyra
I want to retrieve friends tweets to display on my website. I was previously using basic authentication but this no longer works. The site is a coded in coldfusion and I have set up an application on the Twitter site so i have a consumer key etc. But i don't know what to do next. Any help or

[twitter-dev] User authentication verify

2010-09-17 Thread yasiraja
Hi, Previously our application used basic authentication for connecting twitter users into our application, and after the twitter's announcement from change from basic authentication to OAuth, we changed our application for oauth, The login of the user to our application works fine : The

[twitter-dev] Twitter xAuth using MGTwitterEngine

2010-09-17 Thread Khanh Nguyen
Hi all, I sent the request to get approvals from Twitter for using xAuth, and Twitter has approved. But I still got error as below: = m2010-09-17 16:43:25.317 me360[2189:207] m_authenticateRequest =

[twitter-dev] How To Update ourTwitter status with ASP

2010-09-17 Thread twitterceylan
Hello I found to bellow asp code for update twitter status, but it not work. Please help me for this aim. % Response.Buffer = True Dim xml Set xml = Server.CreateObject(Microsoft.XMLHTTP) twitter_username = username 'change to your twitter username twitter_password = password 'change to

[twitter-dev] API doesn't respond to my status update request. JS - XmlHTTPRequest.

2010-09-17 Thread Kakysha
I use XmlHTTPRequest in JavaScript (actually, i write Google Chrome Extension) Api successfully gives me all the tokens (i use oAuth OOB) the twitter returns me a PIN code, then it successfully changed to acces token, and on the final stage - attemp to update status it doesnt return any response

[twitter-dev] twitter host url and port

2010-09-17 Thread ap
Hi all, Actually i am developing twitter application.While making connection to the twitter server which host url and port number i have to give that i dont know. Please if anyone knows it help me in it. -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates

Re: [twitter-dev] Search API

2010-09-17 Thread Taylor Singletary
Hi Travis, The Search API's corpus of tweets is a rolling window that generally only goes back about 5 days, sometimes less depending on tweet velocity. We hope to some day offer a much larger pool of tweets for searching. Taylor On Thu, Sep 16, 2010 at 10:50 PM, Travis Beauvais

Re: [twitter-dev] Failed to validate oauth signature and token with xAuth

2010-09-17 Thread Tom van der Woerdt
Base String looks fine. What's the complete request you are making? (the POST /oauth/access_token HTTP/1.1 part) Tom On 9/17/10 10:04 AM, mlowicki wrote: Hello!, We're implementing widget for Opera browser and we got xAuth access lately. I'm trying to get access token but without any

Re: [twitter-dev] twitter host url and port

2010-09-17 Thread Taylor Singletary
Hi there, The Twitter API runs on standard web service ports: Port 80 for non-secure traffic and Port 443 for SSL-based traffic. The Twitter REST API lives at api.twitter.com. Most resources representing Twitter features are under versioned naming schemes, such as

Re: [twitter-dev] API doesn't respond to my status update request. JS - XmlHTTPRequest.

2010-09-17 Thread Taylor Singletary
Hi there, What's the value of accessor.serviceProvider.actionURL when you're trying to update status? I'm not familiar with the OAuth library used here, can you tell me more about it? Thanks, Taylor On Fri, Sep 17, 2010 at 3:32 AM, Kakysha ezhikvd...@gmail.com wrote: I use XmlHTTPRequest in

Re: [twitter-dev] Failed to validate oauth signature and token with xAuth

2010-09-17 Thread Matt Harris
Hey Michal Matt Harris Developer Advocate, Twitter http://twitter.com/themattharris On Sep 17, 2010, at 1:04, mlowicki mlowi...@gmail.com wrote: 1284633641688 -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi

Re: [twitter-dev] Failed to validate oauth signature and token with xAuth

2010-09-17 Thread Matt Harris
Ok no idea what happened with my previous email. Anyway your timestamp is in milliseconds when it should be in seconds. Give that a go and let us know what happens. Matt On Sep 17, 2010, at 1:04, mlowicki mlowi...@gmail.com wrote: Hello!, We're implementing widget for Opera browser and

[twitter-dev] Twitter client to get updates

2010-09-17 Thread ram
I want to write a twitter notification client. When anyone who I follow tweets I need to get a notification so that I can go and fetch the tweeted message. Is this possible and allowed ? Thanks Ram -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via

[twitter-dev] Re: How To Update ourTwitter status with ASP

2010-09-17 Thread Rich
That's using Basic Auth which has been removed from the API, you need to use oAuth now. You could try something like this (http://scottdesapio.com/ VBScriptOAuth/) I've not actually tried this myself as I've not used Classic ASP in over 6 years now. Richard On Sep 17, 12:55 pm, twitterceylan

Re: [twitter-dev] User authentication verify

2010-09-17 Thread Taylor Singletary
Hi there, Twitter doesn't support any kind of seamless-session integration as you're looking for. Your application is one thing. Twitter is another. Being logged into your application is a completely separate state than being logged in to Twitter. Taylor On Fri, Sep 17, 2010 at 2:03 AM,

Re: [twitter-dev] How do i retrieve tweets on the friends_timeline using oauth

2010-09-17 Thread Taylor Singletary
Hi Lyra, I don't know much about working in ColdFusion, or using OAuth in Cold Fusion but this thread might help you: http://stackoverflow.com/questions/997708/coldfusion-oauth-twitter-api I know that some folks delegate OAuth operations to a Java class. Taylor On Fri, Sep 17, 2010 at 1:55 AM,

[twitter-dev] User Background Error

2010-09-17 Thread Mike
Well, I recently updated my Twitter background from an image to just a solid color. @mikehelmick On an application that is using the Twitter API, I am pulling in the users background, but on my page; it still shows my previous background image rather than just a solid color. Hope to see a fix

[twitter-dev] Really need assistance with a basic user timeline

2010-09-17 Thread Mike
Hello all, I am pulling my hair out trying to find an answer to this problem and what seems like a simple problem really isn't turning out to have a simple answer. All I want to do is list the most recent tweets and retweets in my account on my website. I used to do this easily using PHP and

Re: [twitter-dev] Really need assistance with a basic user timeline

2010-09-17 Thread Taylor Singletary
Hi Mike, If your intention is to just fetch the tweets you author and the retweets you create, you can make an unauthenticated request to something along the lines of : GET http://api.twitter.com/1/statuses/user_timeline.atom?screen_name=episodinclude_rts=true Without using OAuth, you can make

[twitter-dev] Re: Tweet Button counter url encoding

2010-09-17 Thread themattharris
Just wanted to let you know we've deployed some changes which should have fixed this issue. @themattharris On Sep 14, 11:38 pm, Remo remo.siegw...@gmail.com wrote: Hi Matt Thank you for your response! The #newtwitter looks great btw! Cheers Remo -- Twitter developer documentation and

[twitter-dev] Re: problem in twitter share

2010-09-17 Thread themattharris
Just wanted to let you know we've deployed some changes which should have fixed this issue. @themattharris On Sep 8, 8:09 am, Tom van der Woerdt i...@tvdw.eu wrote: There's currently a bug involving URLs that include an character. Tom On 9/8/10 1:02 PM, swati wrote: script

[twitter-dev] Re: Really need assistance with a basic user timeline

2010-09-17 Thread Mike
I suggest using http://github.com/abraham/twitteroauth Set up an application on http://dev.twitter.com/apps/new Plug the CONSUMER_KEY and CONSUMER_SECRET you get after creating the App into the TwitterOAuth script. Run the script and login, etc. In callback.php; you'll need to print_r on

Re: [twitter-dev] Failed to validate oauth signature and token with xAuth

2010-09-17 Thread Michał Łowicki
Hi Matt! Even with: var timestamp = Math.round(new Date().getTime() / 1000); still the same problem. 2010/9/17 Matt Harris mhar...@twitter.com Ok no idea what happened with my previous email. Anyway your timestamp is in milliseconds when it should be in seconds. Give that a go and let us

[twitter-dev] Re: Really need assistance with a basic user timeline

2010-09-17 Thread Mike
@Taylor: statuses/user_timeline does not return retweets and will return blank if their last status was a retweet. To get retweets you need to use statuses/retweeted_by_me, which does require Authentication. On Sep 17, 3:35 pm, Taylor Singletary taylorsinglet...@twitter.com wrote: Hi Mike, If

Re: [twitter-dev] Re: Really need assistance with a basic user timeline

2010-09-17 Thread Matt Harris
Hey Mike, By default the user_timeline doesn't return retweets but you'll see in Taylor's example he added the querystring parameter include_rts=true. If you do that retweets are included so the call to statuses/retweeted_by_me is not required. Hope that helps, @themattharris On Fri, Sep 17,

[twitter-dev] Policy clarification on Streaming API, User Stream and Site Stream products

2010-09-17 Thread John Kalucki
Posted here: http://dev.twitter.com/pages/streaming_api There are three main Streaming products: The Streaming API, User Streams and Site Streams. These products operate in the same way, but each serves a somewhat different purpose. - *Streaming API:* Public statuses from all users, filtered

Re: [twitter-dev] Policy clarification on Streaming API, User Stream and Site Stream products

2010-09-17 Thread M. Edward (Ed) Borasky
-- M. Edward (Ed) Borasky http://borasky-research.net http://twitter.com/znmeb A mathematician is a device for turning coffee into theorems. - Paul Erdos Quoting John Kalucki j...@twitter.com: Posted here: http://dev.twitter.com/pages/streaming_api There are three main Streaming products:

Re: [twitter-dev] Policy clarification on Streaming API, User Stream and Site Stream products

2010-09-17 Thread John Kalucki
We haven't made any decisions about Basic Auth and the Streaming API. Yes, the policy is vague about connection cardinality. We're still in beta... -John On Fri, Sep 17, 2010 at 3:31 PM, M. Edward (Ed) Borasky zn...@borasky-research.net wrote: -- M. Edward (Ed) Borasky

[twitter-dev] Error posting _ to twitter using statuses/update

2010-09-17 Thread Elsa
I got a question about sending _ to twitter. It is working fine if I post it from twitter site but when I use statuses/update to post a status with _, twitter is returning a failure. Posting other characters (e.g. ^ shown below) are fine using exactly the same code. I've attached the success and

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

2010-09-17 Thread wildcat
Did you get this answered? If not, the answer is that Twitter returns a URL variable called OATH_VERIFIER that you need to add as the third parameter in your getOAuthAccessToken request. RLS On Sep 14, 3:47 pm, Andy Reid andyreid...@gmail.com wrote: Oddly enough. No. I just dumped the response

Re: [twitter-dev] Error posting _ to twitter using statuses/update

2010-09-17 Thread yaemog Dodigo
interesting, posting as a status message throught the api (python-twitter) worked for me. HTTP/1.1 401 Unauthorized maybe sth. else is broken? -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi

[twitter-dev] retrieving retry-after value

2010-09-17 Thread Abhi
Hi, was wondering if any one can help with the PHP code to retrieve retry- after value from the header using CURL. I tried several ways but nothing seems to work. Thanks for help in advance. -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter:

[twitter-dev] Re: Twitter in Portuguese

2010-09-17 Thread George Lima
I'm waiting attentively, thanks! On Sep 16, 1:44 am, George Lima beomo...@gmail.com wrote: why there is a setting in Portuguese language? why is twitter question: What language would you like to Twitter in? I would like to see in Portuguese,  more not have this option -- Twitter developer