我正在尝试将我的评论表单与Facebook登录集成以下代码:
FB_RequireFeatures([“XFBML”],function(){
FB.init(“appID”,“/ xd_receiver.html”,{“permsToRequestOnConnect”:“email”});
}
...
< fb:login-button onlogin =“update_user_details();” perms =“email”v =“2”class =“fb_login_not_logged_in FB_login_button FB_ElementReady”>
用户通过我的网站成功登录Facebook后,他们的个人资料可以以< fb:profile-pic uid ='loggedinuser'facebook-logo ='true'size ='normal'height ='54'>
但我找不到名为fbs_ *的cookie!我只能获得名为appid_user的会话,该值是刚刚记录的用户ID。如何获得fbs_ * cookie?
我注意到,旧FB init方法中有一个参数cookie。
FB.init({
appId : "xxx",
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true, // parse XFBML
});
新的FB init方法中有类似的东西吗?
由于