Facebook访问令牌 - 使用PHP中的访问令牌和JavaScript身份验证

时间:2011-05-10 03:46:18

标签: facebook facebook-graph-api

我在我的网站上使用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'});

1 个答案:

答案 0 :(得分:0)

您不需要PHP库:您只需要从facebook cookie中提取它。之前在Where to find the Facebook cookie?回答,这点在http://publicvoidlife.blogspot.com/2011/01/quick-and-easy-facebook-integration.html

处写得非常好