Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I use ASP .NET and Facebook Connect APIs. but when I run the app and press Connect button it's return to the Website not to the test local server which is (http://localhost:xxxx/test.aspx) So how I can test Facebook locally (i.e How I can change the callback url) ?

share|improve this question
2  
The answer is here: forum.developers.facebook.com/viewtopic.php?pid=116136 you must edit 'C:\WINDOWS\system32\drivers\etc\hosts' file to make your domain come to your localHost – Haytham Mar 17 '10 at 23:43
20  
This system appears to be rather poorly implemented on Facebook's part. It does not seem to have occurred to them that anyone would want to test the feature other than on a live server. The two solutions given here -- editing the local hosts file to spoof the production server and redirect it to localhost, and temporarily changing the live production URL on Facebook to localhost, are both remarkably bad design on Facebook's part. Facebook needs to add some sort of testing capacity to their system. – Paul Legato Oct 13 '11 at 23:55

6 Answers

Edit your app at www.facebook.com/developers/ and set the "Site URL" to "http://localhost/myapppath".

When done - change it back.

share|improve this answer
This cant possibly work? Facebook needs to communicate back with you, and how can it do that if it doesnt know the uRl? or am I missing something? – coderama Feb 21 '12 at 18:14
5  
Facebook does not "connect" back to your server. Their JS does. And the JS runs in the context of your browser. Which knows where "localhost" points to. – jitbit Feb 22 '12 at 19:33
I just tested this solution and can verify that it works. – Zac Apr 3 '12 at 13:38
1  
That's actually pretty clever. – WChargin May 24 '12 at 0:14
It wouldn't let me add "localsite";, I had to make sure I had a dot in there. This worked : "local.site"; – Skeater Oct 6 '12 at 12:09
show 2 more comments

It's simple enough when you find out.

Open /etc/hosts (unix) or C:\WINDOWS\system32\drivers\etc\hosts.

If your domain is foo.com, then add this line:

127.0.0.1    local.foo.com

When you are testing, open local.foo.com in your browser and it should work.

share|improve this answer
3  
By far the best answer! – Somatik Jun 7 '12 at 7:07
1  
It's the best answer! – y5h Nov 19 '12 at 11:38
To edit your hosts file on MAC then run "sudo pico /private/etc/hosts" in your terminal, edit and press "ctrl X" to save – Christoffer May 16 at 9:06
@Christoffer: I believe that /private/etc is just a symbolic link into /etc, so /etc/hosts and /private/etc/hosts is the same file. – freeall May 16 at 9:09
You are right... but some of us needs to be spoon-feed and saying "open /etc/hosts" just isn't enough ;) FB is still failing locally with this solution for me though. I am not using the facebook JS – Christoffer May 17 at 8:37

i suggest creating a test app (for dev environment only) on https://developers.facebook.com/apps and set: Website with Facebook Login property to your localhost:[port] settings.
this option will work fine with no need to change hosts.
remember to change the appId back to your production app once you go live.

enter image description here

share|improve this answer
Or just use separate configuration files for, dev, staging and live. – Chris Barry May 18 at 12:06

I couldn't use the other solutions... What worked for me was installing LocalTunnel.net (https://github.com/danielrmz/localtunnel-net-client), and then using the resulting url on Facebook.

share|improve this answer

Facebook seemingly randomly disables the ability to set localhost as a domain on your facebook app. I found the easiest work around was to tunnel my localhost to the web. This can be done for free using http://progrium.com/localtunnel/ or with a custom url (easier since you don't have to change url everytime in facebook) https://showoff.io

share|improve this answer

go to canvas page.. view it in browser.. copy the address bar text. now go to your facebook app go to edit settings

in website, in site url paste that address

in facebook integration , again paste the that address in canvas url

and also te same code wherever you require canvas url or redirect url..

hope it will help..

share|improve this answer

Your Answer

 
discard

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

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