uid 作为 response.session.uid 存储在 FB 对象中,这是您需要通过 Ajax 发送的参数。
<script type="text/javascript">
jQuery(document).ready(function() {
FB.init({appId: '135570939849404', status: true, cookie: true, xfbml: true});
FB.getLoginStatus(function(response) {
if (response.session) {
jQuery.ajax({
async:true,
type: "POST",
url: ("/yourTarget.php"),
dataType : 'json',
data: {uid : response.session.uid},
success : function(data){
alert("success");
},
error : function(XMLHttpRequest, textStatus, errorThrown) {
alert("error");
}
});
}else {
window.location = "index.php"
}
});
});
</script>
会话数据全部存储在您在 javaScript 中读取的 cookie 中。如果您想使用类似以下代码的内容,当然可以直接从 PHP 访问这些数据:
function get_facebook_session_data($app_id, $application_secret) {
$cookieName = 'fbs_' . $app_id;
if (!isset($_COOKIE[$cookieName])) {
return null;
}
$fb_session = array();
//If magic_quotes is set then stripslashes else strip doublequotes then trim the cookie contents.
//Parse the cookie - loading each parameter into an associative array $fb_session.
parse_str(trim(get_magic_quotes_gpc() ? stripslashes($_COOKIE[$cookieName]): $_COOKIE[$cookieName],'"'), $fb_session);
return $fb_session;
}
$fb_session['uid'] 有所需的数据!
还有一个 PHP SDK 可以创建一个包含这些数据的对象:
https ://github.com/facebook/php-sdk/
您可以使用 getUser() 方法获取 UID .....