views:

88

answers:

1

Hi, I can't run facebook connect on localhost. I am using app-engine on pydev. I configured the site in facebook to : http://localhost:8080 but it returns an error :

API Error Code: 100
API Error Description: Invalid parameter
Error Message: next is not owned by the application.

Is there a way to work with facebook on localhost?

Thanks, Gavriel

+1  A: 

Set both your Site URL and Post-Authorize Redirect URL to http://localhost:8080/

Also, if you're using Internet Explorer, see here:

http://stackoverflow.com/questions/2952795/facebook-connect-graph-problems-in-internet-explorer-with-fblogin-dialog-no/3389353#3389353

I found that using http://127.0.0.1:8080 in the browser instead of http://localhost:8080/ fixed a problem I was having in IE.

Saxon Druce