Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've created an sample application for development and I've created another sample application with all the same properties except domain, since all the return_urls should be based on the domain. I'm using One version at my localhost and using other version in another test domain.

So whenever i copy all the code to my test domain, i need to change the app key , secret and return url etc..

What i need to know is whether its possible to add two or more domains for a single app and only change the return url without changing the app key, secret etc..??

Update:

Sorry i intended to say without changing app key, secret.. That was a typo mistake that changed the whole context of the question.

share|improve this question
@rudolf_franek I think what Vijay is asking is how can he set it up so that he can use the same registered APP on his localhost AND on his domain without it complaining about the URL not being authorised. – Coulton Oct 25 '11 at 10:11
Sorry @udolf_franek , that was a typo mistake, i just want to add two domains and keep all the other settings intact and just want to know whether that will work from two different domains? – Vijay Oct 25 '11 at 10:12
But this won't allow for full testing (logging in / authorisation) on two domains, it will just allow offline access. – Coulton Oct 25 '11 at 10:15
1  
That because for the same app(i.e key and secret) you have given the offline access , that means you never logged out and the cookie never gets deleted.. But i dont want to have offline access – Vijay Oct 25 '11 at 10:16
I see - sorry. I can only guess you may use two domains as subdomains of one domain you provide in your facebook app settings. – rudolf_franek Oct 25 '11 at 10:24
show 1 more comment

1 Answer

up vote 3 down vote accepted

This is the toturial what you're looking for:

Check Under: Support for Multiple Domains in the Developer App

share|improve this answer
That's a good find.. I've manually tried to add two domains as localhost and xxx.com as stated in that tutorial . But when i tried to save it showed the following error Error xxx.com must be derived from your Site URL. and when i changed the site url to match with xxx.com then it showed the error as Error localhost must be derived from your Site URL. and when i removed the site Url altogether, it showed that site url must be specified as you have noted the 'App domin' :( – Vijay Oct 25 '11 at 11:34
1  
Don't use localhost, or if you do change the hosts file to redirect to it. For example in the hosts file add 127.0.0.1 devel.xxx.com and use that in the developers application as the second domain. – DannyKK Oct 25 '11 at 11:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.