Testing facebook application on development server

The facebook graph API does not allow redirecting to any address other than that registered in the application. So, if you want to test changes to your code on a dev server without deploying it, how would you do it? Are you creating another facebook app just for testing?

Edit: This question is about server authentication. That is, when the user logs in, you redirect them to facebook, they log in, and then facebook redirects them back to you.

+5
source share
2 answers

:

+2

Mac/Linux: /etc/hosts, ..:

127.0.0.1   testserver
+1

All Articles