我正在开发一个FB应用程序。 该应用程序在画布页面中进行身份验证,在页面加载时重定向到OAuth对话框
if(!isset($data['user_id']) && $data['page']['liked']){ ?>
<script>
var oauth_url = 'https://www.facebook.com/dialog/oauth/';
oauth_url += '?client_id=XXXX';
oauth_url += '&redirect_uri=' + encodeURIComponent('https://apps.facebook.com/YYYY/');
window.top.location = oauth_url;
</script>
<?php
}
当用户进行身份验证时,我只需要阅读用户名,但我无法在signed_request中找到该信息。
我做错了什么?