How to test Facebook App on localhost ?
Usually, in the past when I setup Facebook application for my websites. The new Facebook App Connect API has no problem allowing me to run tests with a live server. However, this time I need to run couple of tests for a new PHP project using Facebook Connect APIs on localhost server. To get this done, see the following steps.
Let say the app is located at
http:://localhost/fbapp
To make the Connect button returns back to the
http://localhost/fbapp
Under the target app settings. Change Site URL to
http://localhost/fbapp
On the machine that you are running the test. Edit the
/etc/hosts
file or if you are using Windows, editC:\WINDOWS\system32\drivers\etc\hosts
Add the line
127.0.0.1 localfbapp.com
This should trick Facebook Connect API to allow the tests to be run locally.
Hope this tutorial can be helpful.
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+5k Golang : How to extract video or image files from html source code
+10.3k Golang : List objects in AWS S3 bucket
+3.1k Golang : Calculate half life decay example
+6.1k Golang : How to generate Code 39 barcode?
+5.2k Golang : Convert(cast) io.Reader type to string
+5k Golang : Handling Yes No Quit query input
+5.1k Golang : Gorrila mux.Vars() function example
+4.2k Golang : What fmt.Println() can do and println() cannot do
+5.5k Golang : Test if an input is an Armstrong number example
+10.3k Golang : unknown escape sequence error
+11.8k Golang : Display list of time zones with GMT
+2.6k Golang : Calculate a pip value and distance to target profit example