adam
adam

Reputation: 2968

What should I use as my connect URL when using FB AUTHENTICATION?

{ "error": { "type": "OAuthException", "message": "Invalid redirect_uri: The Facebook Connect cross-domain receiver URL (http://www.beta.neighborrow.com/callback) must have the application's Connect URL (http://www.beta.neighborrow.com/callback/) as a prefix. You can configure the Connect URL in the http://www.facebook.com/developers/editapp.php?app_id=2233125716\">Application Settings Editor." } }

What should I use as my connect URL

Upvotes: 0

Views: 519

Answers (2)

Yuliy
Yuliy

Reputation: 17728

If callback is the particular XDReceiver, then your Connect URL should probably be http://www.beta.neighborrow.com/

Upvotes: 0

Dolph
Dolph

Reputation: 50690

I would start by removing the extraneous .com from your "cross-domain receiver URL":

http://www.beta.neighborrow.com.com/callback
                               ^

Upvotes: 1

Related Questions