如何将Facebook服务器端流与FOSFacebookBundle一起使用



FOSFacebookBundle的默认实现是使用客户端流。我已经尝试过了,它有效。现在我需要实现服务器端流。然后我这样做:

单击超链接将转到操作如下所示的路由:

$client_id = $this->container->getParameter('fos_facebook.app_id');
$redirect_uri = urlencode($this->generateUrl('_security_check', array(), true));
$scope = implode(',', $this->container->getParameter('fos_facebook.permissions'));
$state = md5(uniqid(rand(), TRUE)); //CSRF protection
$this->getRequest()->getSession()->set('facebook_state', $state);
$oauthUrl = 'https://www.facebook.com/dialog/oauth?client_id='.$client_id.'&redirect_uri='.$redirect_uri.'&scope='.$scope.'&state='.$state;
return $this->redirect($oauthUrl);

当用户单击允许然后重定向回我的应用程序时,它被重定向到 Facebook,其中操作与处理客户端操作的操作相同

它返回错误:必须使用活动访问令牌来查询有关当前用户的信息

此错误由以下行引起:

$me = $this->fbapi->api('/me');

使用Facebook服务器端流程的正确实现是什么?

当用户单击允许然后重定向回我的应用程序时,它被重定向到 Facebook,其中操作与处理客户端操作的操作相同

这是服务器端身份验证流的前三个步骤。

现在,您还必须执行第四步:https://developers.facebook.com/docs/authentication/server-side/

相关内容

  • 没有找到相关文章

最新更新