Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is anyone else having a difficult time getting Twitters oAuth's callback URL to hit their localhost development environment. Apparently it has been disabled recently. http://code.google.com/p/twitter-api/issues/detail?id=534#c1

Does anyone have a workaround. I don't really want to stop my development

share|improve this question
5  
FYI: dev.twipler.com resolves to 127.0.0.1 – Dead account Nov 25 '09 at 11:39

8 Answers

Here is the workaround: http://www.tonyamoyal.com/2009/08/17/how-to-quickly-set-up-a-test-for-twitter-oauth-authentication-from-your-local-machine/

To sum up the most important parts.

Alternative 1.

Set up your .hosts (Windows) or etc/hosts file to point a live domain to your localhost IP. such as:

127.0.0.1 xyz.com

where xyz.com is your real domain.

Alternative 2.

Also, the article gives the tip to alternatively use a URL shortener service. Shorten your local URL and provide the result as callback.

Alternative 3.

Furthermore, it seems that it works to provide for example http://127.0.0.1:8080 as callback to Twitter, instead of http://localhost:8080.

Best of luck!

share|improve this answer
5  
Direct links like this should include the relevant bits of the article in the answer. In case the article disappears. – jcollum Feb 17 '12 at 19:24
2  
I edited the answer to sum up the important aspects of the article. – Jon Nylander May 5 '12 at 8:53
Good point and thank you. – Tony May 21 '12 at 6:31
2  
127.0.0.1:3000 works like a charm. – JacopKane Jul 22 '12 at 19:58
Could this be causing the following error: The remote server returned an error: (401) Unauthorized? – Tyler Feb 1 at 18:20

I just had to do this last week. Apparently localhost doesn't work but 127.0.0.1 does...go figure. This of course assumes that you are registering two apps with Twitter, one for your live www.mysite.com and another for 127.0.0.1

share|improve this answer
really odd why this happens .. but does work for me ..thanks – Archan Mishra Apr 9 '12 at 5:48

Yes, it was disabled because of the recent security issue that was found in OAuth. The only solution for now is to create two OAuth applications - one for production and one for development. In the development application you set your localhost callback URL instead of the live one.

share|improve this answer
I just tried doing that, but it doesn't accept localhost:3000 as a URL format... – David N. Welton Jun 9 '09 at 21:59
1  
Yes, they seem to filter such URLs. :( But the support for custom callback urls is back - maybe they're supported there. – arikfr Jul 7 '09 at 20:11

This is how i did it:

Registered Callback URL: http://127.0.0.1/Callback.aspx

   OAuthTokenResponse authorizationTokens = 
        OAuthUtility.GetRequestToken(ConfigSettings.getConsumerKey(), 
                                     ConfigSettings.getConsumerSecret(), 
                                     "http://127.0.0.1:1066/Twitter/Callback.aspx");

ConfigSettings:

public static class ConfigSettings
{
    public static String getConsumerKey()
    {
        return System.Configuration.ConfigurationManager.AppSettings["ConsumerKey"].ToString();
    }

    public static String getConsumerSecret()
    {
        return System.Configuration.ConfigurationManager.AppSettings["ConsumerSecret"].ToString();
    }

}

Web.config:

<appSettings>

    <add key="ConsumerKey" value="xxxxxxxxxxxxxxxxxxxx"/>
    <add key="ConsumerSecret" value="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"/>

</appSettings>

Make sure you set the property 'use dynamic ports' of you project to 'false' and enter a static port number instead. (I used 1066).

I hope this helps!

share|improve this answer

Use http://smackaho.st

What it does is a simple DNS association to 127.0.0.1 which allows you to bypass the filters on localhost or 127.0.0.1 :

smackaho.st. 28800 IN A 127.0.0.1

So if you click on the link, it will display you what you have on your local webserver (and if you don't have one, you'll get a 404). You can of course set it to any page/port you want :

http://smackaho.st:54878/twitter/callback

share|improve this answer
2  
this is a dead link now – Paul Dec 29 '11 at 4:06
1  
It's not dead. . . . – Mob Dec 29 '11 at 9:50
2  
smackaho.st is no longer available tbaggery.com/2010/03/04/smack-a-ho-st.html. Use lvh.me instead. It goes directly to localhost. – Justin May 25 '12 at 16:15

Just put http://127.0.0.1:xxxx/ as the callback url, where xxxx is the port for your framework

share|improve this answer

set callbackurl in twitter app : 127.0.0.1:3000 and set WEBrick to bind on 127.0.0.1 instead of 0.0.0.0

command : rails s -b 127.0.0.1

share|improve this answer

When I develop locally, I always set up a locally hosted dev name that reflects the project I'm working on. I set this up in xampp through xampp\apache\conf\extra\httpd-vhosts.conf and then also in \Windows\System32\drivers\etc\hosts.

So if I am setting up a local dev site for example.com, I would set it up as example.dev in those two file.

Once this is set up properly, you can simply treat this url (http://example.dev) as if it were live (rather than local) as you set up your Twitter Application.

A similar answer was given here: https://dev.twitter.com/discussions/5749

Direct Quote (emphasis added):

You can provide any valid URL with a domain name we recognize on the application details page. OAuth 1.0a requires you to send a oauth_callback value on the request token step of the flow and we'll accept a dynamic locahost-based callback on that step.

This worked like a charm for me. Hope this helps.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.