Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using XFBML to display Like buttons for my Post objects on my Django app. On localhost, the Like buttons work just fine. It posts what I Like to my FB profile just fine. But on production when I click the Like button it briefly displays the number 1 and then the number disappears. No errors in Chrome Dev Tool.

You can see it on production here

Thank you!

share|improve this question

1 Answer

up vote 1 down vote accepted

It seems you app is not well configured. Here is the answer I got in firebug when clicking and watching the network traffic :

for (;;);{"__ar":1,"payload":{"requires_login":false,"success":false,"already_connected":false,"is_admin":false,"show_error":true,"error_info":{"brief":"App ID does not match domain","full":"The app ID specified within the \"fb:app_id\" meta tag is not allowed on this domain. You must setup the Connect Base Domains for your app to be a prefix of http:\/\/www.matilah.com\/20\/."}}}

With the interesting parts being

brief: App ID does not match domain

full: The app ID specified within the "fb:app_id" meta tag is not allowed on this domain. You must setup the Connect Base Domains for your app to be a prefix of http://www.matilah.com/20/

What did you enter in the settings of your app at http://www.facebook.com/developers/

Especially the Web Site > Site URL and Web Site > Site Domain

It should be http://www.matilah.com and matilah.com

share|improve this answer
Thanks for your help. I've set the settings you mentioned. FB says might take several minutes for changes to be saved, so I'll wait. Do I need to Submit the app as well? – rabbid May 3 '11 at 16:41
Hmm it's been an hour and still no go. I see the error that you got through Firebug as well. for (;;);{"__ar":1,"payload":{"requires_login":false,"success":false,"already_connect‌​ed":false,"is_admin":false,"show_error":true,"error_info":{"brief":"App ID does not match domain","full":"The app ID specified within the \"fb:app_id\" meta tag is not allowed on this domain. You must setup the Connect Base Domains for your app to be a prefix of http:\/\/www.matilah.com\/20\/."}}}. I've made sure my appId is correct, and Site URL and Site Domain to the values you wrote. Other ideas? Thanks! – rabbid May 3 '11 at 17:44
never mind! it started working just now. took a while. Thanks! – rabbid May 3 '11 at 17:49
@rabbid great sometimes Facebook takes a while to propagate on its network the change you make in app settings... – dwarfy May 3 '11 at 18:27

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.