Is there a way without actual domain name and a hosting ?

Can we use localhost in some way ?

I am using Python and Django !

link|improve this question

feedback

3 Answers

Yes, just use url shorteners to create short urls kind of "localhost:port" and then register that shortened url as the callback url for your app.

FYI: some url shorteners don't allow you to shorten "localhost:port" urls. I suggest you to use goo.gl

link|improve this answer
Have you tried it with facebook or twitter ? – Yugal Jindle Aug 27 '11 at 15:30
I have tried it with twitter, but it should work with facebook too – NARKOZ Aug 27 '11 at 20:06
I am not talking about the url shortning to work, I mean how will you get back a redirect on localhost from twitter or facebook ? – Yugal Jindle Aug 27 '11 at 20:08
point the callback url to that link, it will redirect automatically – NARKOZ Aug 27 '11 at 22:07
Ok, let me try and then I will come back with the result. – Yugal Jindle Aug 28 '11 at 5:16
feedback

I have a domain name and hosting but when I need to try the Oauth Authentication, what I do is:

Modify the hosts file to map a random domain to your local ip.

For example in windows, I modify the file 'C:\WINDOWS\system32\drivers\etc\hosts' adding the following line:

127.0.0.1    www.yourdomain.com

BTW, this domain doesn't need to be registered

link|improve this answer
Have you tried it with facebook or twitter ? – Yugal Jindle Aug 27 '11 at 15:30
Yes, it was perfectly with Facebook. But you might need to restart the browser or to press Ctrl + F5 – Juande Carrion Aug 29 '11 at 15:44
feedback
up vote 1 down vote accepted

This is what I have found out :

It can be done, simply by using 127.0.0.1 in the callback/redirect uri

It worked and I am able to test my app on localhost.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.