Actually I was able to turn the switch on and also make these changes.
Neither fixed the problem. Still getting the 401 error. I know OAuth
has been down today but it is working at least for now.

On Jul 20, 2:57 pm, Elmseeker <elmsee...@gmail.com> wrote:
> in twitteroauth.php you will find 4 lines
>
> function accessTokenURL()  { return 'https://api.twitter.com/oauth/
> access_token'; }
> function authenticateURL() { return 'https://twitter.com/oauth/
> authenticate'; }
> function authorizeURL()    { return 'https://twitter.com/oauth/
> authorize'; }
> function requestTokenURL() { return 'https://api.twitter.com/oauth/
> request_token'; }
>
> the 2 in the middle need to be changed to:
>
> function authenticateURL() { return 'https://api.twitter.com/oauth/
> authenticate'; }
> function authorizeURL()    { return 'https://api.twitter.com/oauth/
> authorize'; }
>
> hope this helps.
>
> On Jul 20, 11:02 am, Gabe <oneill.g...@gmail.com> wrote:
>
>
>
> > 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 "test.php" file in his library could be
> > substituted for the callback.  Anyway when I realized the mistake I
> > was happy to implement the new code.  The new callback is being called
> > but I am consistently getting HTTP Error Code 401 (unauthorized) when
> > it is being used, and I am using it basically "as is". Any insight
> > would be appreciated.
>
> > Note - I did regenerate my application registration recently - how
> > long does it take for those credentials to be usable?
>
> > Thanks much.
>
> > -Gabe

Reply via email to