我在我的网站上使用JavaScript身份验证,但我希望在PHP中获取访问令牌,以便我可以存储用户的电子邮件地址。 如果不使用PHP库,有没有快速简便的方法? 谢谢!
PS - 我知道如何在JS中获取访问令牌:
FB.login(function(response) {
if (response.session) {
if (response.perms) {
} else {
// user is logged in, but did not grant any permissions
alert("No Permission..");
}
} else {
// user is not logged in
alert("Please login to facebook");
}
}, {perms:'read_stream,publish_stream,offline_access'});
答案 0 :(得分:0)
您不需要PHP库:您只需要从facebook cookie中提取它。之前在Where to find the Facebook cookie?回答,这点在http://publicvoidlife.blogspot.com/2011/01/quick-and-easy-facebook-integration.html
处写得非常好