Just wanted to know if there is any way I could develop Facebook applications in localhost.
|
|
|
Edit: 2-15-2012 This is how to use FB authentication for a localhost website. I find it more scalable and convenient to set up a second Facebook app. If I'm building MyApp, then I'll make a second one called MyApp-dev.
I prefer this method because once it's set up, coworkers and other machines don't have additional setup. |
|||||||||||||
|
|
Since you need real domain name registered with Facebook (like my.really.own.domain.com) you can locally redirect requests to this domain to your machine. Easiest out of box approach on any OS is to change "hosts" file to map the domain to 127.0.0.1 (see http://technet.microsoft.com/en-us/library/bb727005.aspx#EDAA and http://serverfault.com/questions/118290/cname-record-alias-in-windows-hosts-file). I usually use Fiddler to do it for me (on Windows with local IIS) - see samples on http://www.fiddler2.com/Fiddler/Dev/ScriptSamples.asp. if (oSession.HostnameIs("my.really.own.domain.com")) { oSession.host="localhost:80"; } I don't remember if either of approaches works with Visual Studio Development Server as it requires incoming Urls to be localhost/127.0.0.1 EDIT: According to ASP.Net blog Fiddler approach should work - http://weblogs.asp.net/asptest/archive/2008/08/13/tip-on-using-fiddler-with-cassini-and-localhost.aspx |
||||
|
|
|
Facebook no longer allowed a 'localhost' callback URL for FBML Facebook applications |
|||
|
I just discovered a workaround: You can make your local machine accessible by using http://localtunnel.com . You'll need to (temporarily) change some URLs used in your app code / html so links point to the temporary domain, but at least facebook can reach your machine. |
|||
|
|
|
I think you should be able to develop applications using the visual studio development web server: Start a new FaceBook application on: http://www.facebook.com/developers/. Then set the settings for the site Url and the canvas url to the running instance of your website for example:http://localhost:1062/ Here are a couple of links that should help you out on starting with FaceBook:
Hope this helps. |
|||
|
|
|
Of course you can, just add the url localhost (without "http") in your app_domain and then add in your site_url "http://localhost" (with http) |
|||
|
|
|
In your app's basic settings (https://developers.facebook.com/apps) under Settings->Basic->Select how your app integrates with Facebook... Use "Site URL:" and "Mobile Site URL:" to hold your production and development URLs respectively. Both sites will be allowed to authenticate. I'm just using Facebook for authentication so I don't need any of the mobile site redirection features. I usually change the "Mobile Site URL:" to my "localhost:12345" site while I'm testing the authentication, and then set it back to normal when I'm done. |
||||
|
|
|
Suppose that you have registered your app as:
You just need to modify the /etc/hosts file by adding
Then, modify your apache configuration
and restart apache. You'll need to put your URL in a variable in order to use it as XML parameter on some calls:
|
|||
|
|
|
There is ! My solution works when you create an app, but you want to use facebook authentification on your website. This solution below is NOT needed when you want to create an app integrated to FB page. The thing is that you can't put "localhost" as a domain in the facebook configuration page of your app. Security reasons ? You need to go to your host file, in OSX / Linux etc/hosts and add the following line : 127.0.0.1 dev.yourdomain.com The domain you put whatever you want. One mistake is to add this line : localhost dev.yourdomain.com (at least on osx snow leopard in doesnt work). Then you have to clear your dns cache. On OSX : type dscacheutil -flushcache in the terminal. Finally, go back to the online facebook developer website, and in the configuration page of your app, you can add the domain "dev.yourdomain.com". If you use a program such as Mamp, Easyphp or whatever, make sure the port for Apache is 80. This solution should work for Windows because it also has a hosts file. Nevertheless, as far as I remember Windows 7 doesnt use this file anymore, but this trick should work if you find a way to force windows to use a hosts file. |
||||
|
|