我正在尝试通过 Flash 从 facebook 应用程序更新游戏分数。
function postdatas(){
var postpath="post.php";
var my_vars:URLVariables = new URLVariables();
my_vars.times = encrypt(game.stopwatch.minText.text+"."+game.stopwatch.secText.text, "PheNi3$@$%!");
var my_url:URLRequest = new URLRequest(postpath);
my_url.method = URLRequestMethod.POST;
my_url.data = my_vars;
var my_loader:URLLoader = new URLLoader();
my_loader.dataFormat = URLLoaderDataFormat.VARIABLES;
my_loader.load(my_url);
}
postdatas();
在 Post.php 中
我正在获取 facebook 用户信息以更新他墙上的消息并更新数据库中的分数
$fbme = $facebook->api('/me');
但我收到“PHP 致命错误:未捕获的 OAuthException:必须使用活动访问令牌来查询有关当前用户的信息”