Reputation: 83
I develop login button on my website www.webdoanhnghiep.biz Recently, this error happen.
Step 1:
window.onload = function(){
FB.init({appId:262362650517650, cookie:true, status:true, xfbml:true });
};
Step 2. View console:
Follow above link, I receive message: "Please try again later".
Anyone have experience with this errors? please help;
Upvotes: 0
Views: 1200
Reputation: 38046
You are using a stale version of the JS SDK, which is now referencing old, invalid resources.
Please always the live versions from connect.facebook.net, as this is the only way you are ensured getting the benefits of bugfixes, and not getting bitten by changes like this.
Additionally, you are both loading a copy of all.js from your own server, as well as loading the one from connect.facebook.net, this negates any improvement you might have seen from serving the resource locally.
Upvotes: 1