Where to download FaceBook JavaScript SDK and xd_r

2020-06-03 04:47发布

I have experience with PHP and JavaScript, but am new to using the FaceBook API. I'm carefully reading through the documentation, but notice thta lot of links within their documentation are broken. For example, the link for http://api.facebook.com/static/xd_receiver.htm is broekn and I need that content to be able to do almost anything with the FB API. Seriously, these guys seem to have really dropped the ball with their documentation. Does anyone know where I can get this file and the rest of the JavaScript SDK? Thanks.

标签: facebook
3条回答
够拽才男人
2楼-- · 2020-06-03 04:56
<div id="fb-root"></div>
<script src="//connect.facebook.net/en_US/all.js"></script>
<script>
  FB.init({
    appId  : 'YOUR APP ID',
    status : true, // check login status
    cookie : true, // enable cookies to allow the server to access the session
    xfbml  : true, // parse XFBML
    channelUrl : 'http://WWW.MYDOMAIN.COM/channel.html', // channel.html file
    oauth  : true // enable OAuth 2.0
  });
</script>

The contents of the channel.html file should be this single line:

 <script src="//connect.facebook.net/en_US/all.js"></script>
查看更多
Animai°情兽
3楼-- · 2020-06-03 05:01

Here is the documentation that facebook has for their Javascript SDK. There are some areas that are poor (to put it lightly), but most of it is there, or in the comments/forums created by users

查看更多
Luminary・发光体
4楼-- · 2020-06-03 05:02

You don't necessarily download it yourself so much as load it when you want to use it.

Here's a link to the quickstart

https://developers.facebook.com/docs/javascript/quickstart/v2.0

查看更多
登录 后发表回答