[twitter-dev] Twitter Oauth deny access callback bug

2011-07-07 Thread ss_test
I have been using twitter oauth to get access token to use with my app for a year now. It seems that twitter has changed the flow when the user successfully logs in and denies access to the app. Here the user is presented three options. You've denied APP access to interact with your account.

[twitter-dev] Twitter OAuth Api Freelance Position

2011-06-14 Thread Byrd
Looking for a Twitter API specialist. You MUST have examples of previous work integrating Twitter OAuth into a LAMP based web application. Specifically we are looking for someone who can take an existing Oauth integration and add additional features included the ability to follow users, retweet,

[twitter-dev] Twitter OAuth Request Token after Facebook Connect - Double login?

2011-06-07 Thread Clint Chaney
Hi I'm trying to setup my site to where a user can connect their Facebook and Twitter accounts. I'm running into a problem where if a user connects Facebook first then Twitter second the request_token I get from $tok = $this-_tw- getRequestToken(); doesn't match the token Twitter sends back after

[twitter-dev] Twitter-oAuth-IPhone : Which function on Login Success : twits of followings

2011-03-18 Thread Battan Amit
Hi All I am using Twitter-oAuth-IPhone https://github.com/bengottlieb/Twitter-OAuth-iPhone Login using this code if(![twitterObj isAuthorized]){ UIViewController *controller = [SA_OAuthTwitterController controllerToEnterCredentialsWithTwitterEngine:twitterObj delegate:self];

[twitter-dev] Twitter OAuth 401 Unauthorized

2011-03-10 Thread Tudor Claudiu Florea
Hello, I am trying to build an application for twitter and in order to do that i need to build functions that post all requests to twitter only with pure PHP. no OAuth libraries or other user build libraries. problem is i always get the 401 unauthorized header. I have done twitter tutorial about

[twitter-dev] Twitter oAuth in flex

2011-02-27 Thread Callum Cohen
Hello, im getting pretty stuck with trying use oAuth with flex/action script. I was wondering if anyone could help? Cheers -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker:

[twitter-dev] Twitter OAuth PHP - Submit tweets without user login?

2011-02-17 Thread Adamantus
I'm using the Twitter OAuth API to try and submit tweets from my site's code. I have the example up and running on localhost and everything works great and I can submit tweets but it goes through a login stage first. Is there a way to bypass this? Basically I just want to tweet to my account

Re: [twitter-dev] Twitter OAuth PHP - Submit tweets without user login?

2011-02-17 Thread Scott Wilcox
Use the 'My Access Token' provided in your App page at http://dev.twitter.com which will negate the need to go through the OAuth dance. Scott. On 17 Feb 2011, at 17:25, Adamantus wrote: I'm using the Twitter OAuth API to try and submit tweets from my site's code. I have the example up and

[twitter-dev] Twitter Oauth and Coldfusion

2010-12-15 Thread Steven Neiland
Can anybody see why the following authorization header would return a 401 when trying to get a request token? OAuth oauth_signature=UlAaUlR5A5uJfCcz%2FUVJl53aRy4%3D, oauth_timestamp=1292450596, oauth_signature_method=HMAC-SHA1, oauth_version=1.0, oauth_consumer_key=w50vPfRyCVgzBxtdAsoxwg,

Re: [twitter-dev] Twitter Oauth and Coldfusion

2010-12-15 Thread Tom van der Woerdt
@Taylor: This isn't the API itself, this is OAuth. request_token is definitely two-legged @Steven: Your header looks fine, the values are properly URL encoded and the time appears to be valid. To help you debug this issue, we need to know the Base String you are testing with, the request you

[twitter-dev] Twitter OAuth replays Blackberry devices in lower case

2010-12-07 Thread Canaan
I am using Twitter OAuth in one of our sites. The oauth_token and oauth_verifier we get from twitter are all mixed cases for all browsers except blackberry browser (blackberry storm). It seems like twitter detects client devices and converts everything to lower case for blackberry. Any ideal? --

[twitter-dev] Twitter OAuth on Wampserver

2010-11-26 Thread computergenius
Is it possible to use Wampserver to test OAuth? I can get basic OAuth to work on-line (on a real domain) but I can only debug PHP on my local Windows computer using Wampserver. At the moment, I can't see how to Register an Application, because the domain name only exists on my local computer, I

Re: [twitter-dev] Twitter OAuth on Wampserver

2010-11-26 Thread Edward Hotchkiss
you can use command line oauth with access tokens on a per user basis. On Nov 26, 2010, at 9:01 AM, computergenius wrote: Is it possible to use Wampserver to test OAuth? I can get basic OAuth to work on-line (on a real domain) but I can only debug PHP on my local Windows computer using

[twitter-dev] Twitter Oauth problem

2010-10-21 Thread TwitterNoob
Hi, My twitter application is Rails based and it uses twitter-auth-0.1.22. The application has been working fine all of the sudden but about a couple weeks ago the app stopped allowing me to sign in via twitter and it displays this message in the log OAuth::Unauthorized (401 Unauthorized):

[twitter-dev] twitter oauth :geting undefined index: oauth_token_secret in

2010-10-01 Thread bharani
Hi am trying to post tweets using oauth (PHP) i created the application in my twitter account , i executed some open source script but that produce the below error, Notice: Undefined index: oauth_token_secret in How to fix this issue my snippet require_once('twitterOAuth/twitterOAuth.php');

[twitter-dev] twitter oauth command line

2010-09-28 Thread ashy
Hi All, I am using the following example in my django app to store users outhtoken into the db. http://github.com/henriklied/django-twitter-oauth But when Iam trying to use the oauth methods through commands http://docs.djangoproject.com/en/dev/howto/custom-management-commands/ it keeps giving

[twitter-dev] Twitter Oauth Realization within an SAP CRM system

2010-09-27 Thread Andyiz
Hello Dev, - We are creating Twitter demo from a SAP CRM system. - With basic authentication everything worked fine. - Now we tried to create an own OAuth client for Twitter with SAP’s programming language ABAP. - We have registered the following (browser) application:

Re: [twitter-dev] Twitter Oauth Realization within an SAP CRM system

2010-09-27 Thread Tom van der Woerdt
Hi, The Base String looks fine, so does the Authorization header and the signature. What is the error you get back? Not just the error number (probably 401), but also the message. Tom On Mon, 27 Sep 2010 02:34:06 -0700 (PDT), Andyiz mailanand@gmail.com wrote: Hello Dev, - We are

Re: [twitter-dev] twitter oAuth 401 Unauthorizd error

2010-09-26 Thread Ramesh Billapati
made callbackurl =oob, it worked! thanks! On Thu, Sep 23, 2010 at 12:57 AM, Tom van der Woerdt i...@tvdw.eu wrote: There's an oauth_callback in your Base String but not in your POST/Authorization header. Tom On 9/23/10 3:00 AM, bill wrote: I have been working on a 401 error from twitter

Re: [twitter-dev] twitter oAuth 401 Unauthorizd error

2010-09-23 Thread Taylor Singletary
Also, please note that OAuth URLs should be https://api.twitter.com/oauth/request_token, https://api.twitter.com/oauth/authorize, and https://api.twitter.com/oauth/access_token. Likewise, API request should go to http://api.twitter.com/1/* Taylor On Wed, Sep 22, 2010 at 10:57 PM, Tom van der

[twitter-dev] twitter oAuth 401 Unauthorizd error

2010-09-22 Thread bill
I have been working on a 401 error from twitter oAuth, but I have no clue. Please see if you can help me Thanks Log === debug: token is now: debug: token_secret is now: debug: Getting request token from http://twitter.com/oauth/request_token debug: callback: debug: signing request with:

Re: [twitter-dev] twitter oAuth 401 Unauthorizd error

2010-09-22 Thread Tom van der Woerdt
There's an oauth_callback in your Base String but not in your POST/Authorization header. Tom On 9/23/10 3:00 AM, bill wrote: I have been working on a 401 error from twitter oAuth, but I have no clue. Please see if you can help me Thanks Log === debug: token is now: debug:

[twitter-dev] Twitter oAuth file not return token

2010-09-09 Thread Choonu
Hello sir i am authenticate to twitter with my website .first this file was hosted at my old server and better running and return token id but i have shifted to my new server these file now it is not returning token id ,I dont know what is difference in my php.ini and which is disabled .Please

Re: [twitter-dev] Twitter oAuth file not return token

2010-09-09 Thread Taylor Singletary
Are you saying that on your old server you were able to negotiate for a request token on the api.twitter.com/oauth/request_token step but now on your new server you cannot? I would check the server time on your new server, to determine if it is in sync with an NTP time server, or otherwise adjust

[twitter-dev] twitter oauth incredibly slow?

2010-09-04 Thread Corey Northcutt
Yesterday I implemented Twitter oAuth on my site, using really nothing but a cut and paste of the example from the twitteroauth class on github. It's working fine, with one hang-up- it's incredibly slow - like at least 30 seconds to process the connection, even during those occasional instances

Re: [twitter-dev] twitter oauth incredibly slow?

2010-09-04 Thread Abraham Williams
This is definitely not how TwitterOAuth should be acting. You can try the example site and it is running fine: http://twitteroauth.labs.poseurtech.com/connect.php Somethings to check for: Are there an for/while/etc loops in your script that might not be functioning properly? Is it possible that

Re: [twitter-dev] Twitter oAuth

2010-09-02 Thread Edward J. Yoon
Thanks. BTW, basic auth seems still available on some applications (e.g., http://twtkr.com/index.php ). I just wondered whether there is a way to verify id/password via OAuth. On Thu, Sep 2, 2010 at 6:10 AM, Matt Harris thematthar...@twitter.com wrote: Hey Edward, Basic Auth on the REST API

Re: [twitter-dev] Twitter oAuth

2010-09-02 Thread Cameron Kaiser
BTW, basic auth seems still available on some applications (e.g., http://twtkr.com/index.php ). I just wondered whether there is a way to verify id/password via OAuth. Those apps are probably using xAuth. -- personal: http://www.cameronkaiser.com/ --

Re: [twitter-dev] Twitter oAuth

2010-09-02 Thread Edward J. Yoon
Thanks! On Thu, Sep 2, 2010 at 10:56 PM, Cameron Kaiser spec...@floodgap.com wrote: BTW, basic auth seems still available on some applications (e.g., http://twtkr.com/index.php ). I just wondered whether there is a way to verify id/password via OAuth. Those apps are probably using xAuth.

Re: [twitter-dev] Twitter oAuth

2010-09-01 Thread Matt Harris
Hey Edward, Basic Auth on the REST API was disabled August 31st. All authenticated requests to the REST API (anything on http://api.twitter.com) need to use OAuth. There is more information on our developer resources site: http://dev.twitter.com/pages/basic_to_oauth Hope that helps, Matt On

[twitter-dev] Twitter OAuth Echo and PHP

2010-09-01 Thread sdenike
I am looking for some help, I am grabbing the full headers from a request sent by the iPhone twitter app to my PHP application. I am looking to grab the username, and well all avail content from https://api.twitter.com/1/account/verify_credentials.json ... I was told OAuth Echo would be the route

[twitter-dev] Twitter oAuth

2010-08-31 Thread Edward J. Yoon
Is it still possible to login using username/password? then, how can I program it? -- Best Regards, Edward J. Yoon edwardy...@apache.org http://blog.udanax.org -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi

[twitter-dev] Twitter OAuth Authentication Fails

2010-08-24 Thread Kevin Wallace
I have three iPhone apps that use OAuth to communicate with Twitter. They have been working well for several months but recently when trying to set-up authentication and exchange the various OAuth tokens using Safari on the iPhone, Safari brings up a page from Twitter that says: Something is

Re: [twitter-dev] Twitter OAuth Authentication Fails

2010-08-24 Thread Matt Harris
Hi Kevin, Thanks for raising this query. We have a fix on it's way out tonight or tomorrow morning for this. Also, whilst this isn't related to the issue you are experiencing I recommended updating your URL to point to our API. All requests for the API should be directed to

[twitter-dev] Twitter OAuth Example?

2010-08-02 Thread ganteng
Hi everyone, could somebody please help me I need a simple Twitter OAuth example that fully running along with the source code I've tried some example that I found in the internet but all of them is not running and the code is in a mess (unreadable) please help me my brothers and sisters :)

[twitter-dev] Twitter oAuth for PHP, some advice needed

2010-07-22 Thread Paul G
Hi Everyone. I've been puzzling over OAuth for some time now with little insight into how to apply it to my situation. If someone could nudge me in the right direction I'd be most grateful. What I am doing now is very simple. Whenever my company publishes new content to it's websites, the

Re: [twitter-dev] Twitter oAuth for PHP, some advice needed

2010-07-22 Thread Paul S Gutches
one quick followup on this, if I may... The Twitter account I registered the app with provided consumer keys / secrets and I used those keys with the client's access tokens to successfully get and post to the account using OAuth. Great. Many thanks to those who pointed me in the right

[twitter-dev] Twitter OAuth Problem

2010-07-20 Thread Gabe
Hi, I have been using Abraham's OAuth library and I *almost* have it working. I'm a longtime C++ developer but new to Twitter API. Anyway, it took me a while to use the callback.php file as the actual call back. That (I thought) was the missing element, I was under the impression that the

[twitter-dev] Twitter Oauth Integration

2010-06-22 Thread Anil kumar M.S
Hi All, Can you please help me in integrating Oauth to our app , thanks Anilkumar

[twitter-dev] Twitter OAuth Timestamps

2010-05-25 Thread Eric Woodward
I have confirmed a problem with xAuth/OAUth that I believe resides within Twitter OAuth implementation that has been a thorn in our side for a while. I say *believe* because I do not claim to know for sure, thus this post. I assume no one at Twitter will be inclined to do me any favours, but

RE: [twitter-dev] Twitter OAuth Timestamps

2010-05-25 Thread Brian Smith
Sent: Tuesday, May 25, 2010 7:40 PM To: Twitter Development Talk Subject: [twitter-dev] Twitter OAuth Timestamps I have confirmed a problem with xAuth/OAUth that I believe resides within Twitter OAuth implementation that has been a thorn in our side for a while. I say *believe* because I

Re: [twitter-dev] Twitter OAuth Timestamps

2010-05-25 Thread Taylor Singletary
@googlegroups.com [mailto:twitter- development-t...@googlegroups.com] On Behalf Of Eric Woodward Sent: Tuesday, May 25, 2010 7:40 PM To: Twitter Development Talk Subject: [twitter-dev] Twitter OAuth Timestamps I have confirmed a problem with xAuth/OAUth that I believe resides within Twitter

Re: [twitter-dev] Twitter OAuth Timestamps

2010-05-25 Thread Bernd Stramm
On Tue, 25 May 2010 19:49:28 -0500 Brian Smith br...@briansmith.org wrote: This is known and expected behavior. There have been other threads about it in the last couple of weeks. If you get a 401 response, you should compare the Date header of Twitter's response to the current system time.

Re: [twitter-dev] twitter oauth

2010-04-29 Thread Lil Peck
For those of us who use simple Classic ASP scripts and Xhttp to autmatically update statuses for our websites (my site automatically updates its twitter status whenever someone posts a new ad), or for those who use PHP curl for similar things, why not bypass Oauth altogether, and instead of

[twitter-dev] twitter oauth

2010-04-28 Thread nav
hello one questionn ,, i can have a oauth authentication in web browse and app desktop the same time ... why the methos are diferents thanks in advance

Re: [twitter-dev] twitter oauth

2010-04-28 Thread John Meyer
On 4/28/2010 4:15 PM, nav wrote: hello one questionn ,, i can have a oauth authentication in web browse and app desktop the same time ... why the methos are diferents thanks in advance The methods are different because the targets are different. With a web application, you are sending the

[twitter-dev] Twitter OAuth fails

2010-02-04 Thread Bavs
Hello, I am using abraham's twitter OAuth PHP library to build a basic application and it is failing. It is failing at: $connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET); /* Get request token */ $request_token = $connection-getRequestToken(OAUTH_CALLBACK); The returned http_code is

[twitter-dev] Twitter Oauth Issues

2010-01-13 Thread Proxdeveloper
Hello folks, I'm developing a twitter desktop client for windows using the Oauth method, but for some reason I'm getting this error while requesting an Access token The remote server returned an error: (401) Unauthorized.. This issue is only happening in my development PC, I've tried the app in

Re: [twitter-dev] Twitter Oauth Issues

2010-01-13 Thread Andrew Badera
Server timestamp difference? ∞ Andy Badera ∞ +1 518-641-1280 Google Voice ∞ This email is: [ ] bloggable [x] ask first [ ] private ∞ Google me: http://www.google.com/search?q=andrew%20badera On Wed, Jan 13, 2010 at 4:16 PM, Proxdeveloper prox.develo...@gmail.com wrote: Hello folks, I'm

[twitter-dev] Twitter OAuth works fine in my app then I get error when trying to login to Twitter.com site

2009-11-28 Thread JimJty
OAuth works fine in my application but then when I open a new tab to login to twitter, I login and I get this message: Woah there! This page requires some information that was not provided. Please return to the site that sent you to this page and try again … it was probably an honest mistake.

Re: [twitter-dev] Twitter OAuth works fine in my app then I get error when trying to login to Twitter.com site

2009-11-28 Thread Terry Jones
Following up to myself: Yes I experience the same. Not sure what causes it... I see the same thing. The browser location bar shows http://twitter.com/oauth/authorize when you have the error page up. So something is redirecting us to the /oauth when we try a normal web login. Digging a

Re: [twitter-dev] Twitter OAuth works fine in my app then I get error when trying to login to Twitter.com site

2009-11-28 Thread Abraham Williams
There is an issue open for this: http://code.google.com/p/twitter-api/issues/detail?id=1199 Abraham On Sat, Nov 28, 2009 at 14:30, Terry Jones te...@jon.es wrote: Following up to myself: Yes I experience the same. Not sure what causes it... I see the same thing. The browser location

[twitter-dev] Twitter OAuth 'Incorrect Signature' Error in update method, when using special char or space in STATUS

2009-10-11 Thread Kumar
Hi, I'm using Apache HttpPost to update the status. it works fine when using only single word plain text Status message. but fails when entering more than one word or any special char. seems i'm doing something wrong in encoding of status message. please help me nd lemme know what encoding

[twitter-dev] Twitter+Oauth on iPhone: How does one logout?

2009-09-23 Thread joeygreen...@gmail.com
I'm implementing Twitter+Oauth on the iPhone using http://github.com/bengottlieb/Twitter-OAuth-iPhone. I'm creating a login/logout button/feature like facebook connect uses. I've got the login working and am wondering how does one logout using Oauth?

[twitter-dev] Twitter + OAuth for iPhone

2009-07-28 Thread Ben Gottlieb
If anyone is interested, I've implemented Twitter OAuth on iPhone (which includes an iPhone version of the OAuth static lib). It's on GitHub: http://github.com/bengottlieb/Twitter-OAuth-iPhone/tree/master