我只能使用php或curl找到样本。
我想做点什么
https://graph.facebook.com/<app_id>/accounts/test-users?
installed=true&permissions=read_stream
如此处所述:http://developers.facebook.com/docs/authentication/#client_credentials
,回复是:
{
"error": {
"type": "OAuthException",
"message": "An access token is required to request this resource."
}
}
也应该......所以如何在JavaScript中获取访问令牌(显然使用JavaScript SDK)。
谢谢!
答案 0 :(得分:0)
用户通过JavaScript SDK连接后,您将拥有访问令牌。
您并不需要在客户端知道它们,因为您可以使用FB.api
来执行Graph API和REST API调用。
另见:Facebook身份验证指南,http://developers.facebook.com/docs/authentication/,特别是使用JavaScript SDK部分的单点登录。
答案 1 :(得分:0)
这个问题证明了我需要学习越来越多...最后安装curl(来自http://curl.haxx.se)并使用http://curl.haxx.se/docs/httpscripting.html修改developers.facebook.com/docs上的示例/认证/#client_credentials。