Facebook 服务器端 oauth 令牌

Facebook server side oauth token

我正在更新使用 facebook (3.2.2) 的 php SDK 的先前版本制作的 cron 脚本。他们的实现方式是使用固定访问令牌。我的问题是,有没有办法在不要求用户登录的情况下在服务器上生成它? (因为这是一个 cron,我无论如何都无法向用户显示任何内容。

到目前为止我看到的所有文档都指向基于浏览器的应用程序。我将如何仅在服务器端执行此操作?有人可以指出我正确的方向吗?

设法弄明白了。

对于那些有同样问题的人,你所要做的就是让 sdk 使用你的应用程序 ID 和应用程序秘密开始一个新的会话,如下所示:

FacebookSession::setDefaultApplication($appId, $appSecret);
$session = FacebookSession::newAppSession(); //starts a new session using the previous info

然后尝试验证它(使用 the facebook documenation.

中的片段
try {
// Try to validate the session:
    $session->validate();
} catch (FacebookRequestException $ex) {
    // Session not valid, Graph API returned an exception with the reason.
    echo $ex->getMessage();
} catch (\Exception $ex) {
   // Graph API returned info, but it may mismatch the current app or have expired.
   echo $ex->getMessage();
}