你好我使用非官方的fb Coldfusion SDK我必须将它全部从使用CFscript转换为传统的cffunctions因为我仍然在CF7上。 一切似乎都在工作,但我不知道为什么当尝试在服务器端登录时查找cookie时找不到它。它似乎在Chorme上很好,但FF,IE和Opera都有同样的问题。
在index.cfm上我有一个fb:login按钮,按下后你会进入登录界面,一旦成功登录,index.cfm刷新运行我的FacebookApp方法,但从服务器端读取时返回access_token的空白值。这是因为在服务器端我尝试从cookie获取信息但是尚未创建cookie。我也输出了access_token的值,但它返回为空白。当我按F5大约一秒钟后,我现在在输出中看到我的access_token的值。同时,如果我使用js alert在getLoginStatus中显示access_token,我可以看到该值。
我已经在一些地方读过旧版浏览器,其中SDK加载速度很慢,无法使用channelURL参数,我已经完成但仍然得到与上面相同的结果。
有什么建议我可以做什么?我尝试添加js timeout以减慢getLoginStatus的速度,所以它有时间阅读cookie但我没有任何乐趣。请帮忙。
页面顶部我有这个
<!doctype html PUBLIC "-//W3C//Dtd html 4.0 Transitional//EN">
<html xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml">
身体标签后我有以下
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : 'xxxxxxxxxxxxxxxx',
cookie : true, // enable cookies to allow the server to access the session
oauth : true, // OAuth 2.0
status : true, // check login status
xfbml : true, // parse XFBML
channelUrl: document.location.protocol + './/www.sitename.com/fbchannel.html' //custom channel
});
// whenever the user logs in or logs out, we refresh the page
FB.Event.subscribe('auth.login', function(response) {
window.location.reload();
alert('login');
});
FB.Event.subscribe('auth.logout', function(response) {
window.location.reload();
//alert('logout');
});
FB.getLoginStatus(function(response) {
if (response.status == 'connected') {
// the user is logged in and connected to your
// app, and response.authResponse supplies
// the user's ID, a valid access token, a signed
// request, and the time the access token
// and signed request each expire
var uid = response.authResponse.userID;
var accessToken = response.authResponse.accessToken;
//alert('end');
// alert('login url called '+unescape(window.location.pathname));
// whenever the user logs in we refresh the page
//alert(accessToken);
} else if (response.status == 'not_authorized') {
// the user is logged in to Facebook,
//but not connected to the app
} else {
// the user isn't even logged in to Facebook.
}
});
};
(function() {
var e = document.createElement('script');
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
}());
</script>
在上面的某些地方,我有我的按钮
<fb:login-button scope="publish_stream,email" autologoutlink="true">Connect with FB</fb:login-button>