HWIOauth& Facebook访问user_friends

时间:2015-03-31 06:50:06

标签: facebook symfony hwioauthbundle

我正在尝试使用HWIOauthBundle访问oauth发送的facebook发送的user_friends。

##config.yml
    resource_owners:
            facebook:
                type:                facebook
                client_id:           %facebook_app_id%
                client_secret:       %facebook_app_secret%
                scope:               "email, public_profile, user_friends"
                infos_url:     "https://graph.facebook.com/me?fields=id,name,email,picture.type(square)"
                paths:
                    email:          email
                    profilepicture: picture.data.url

loadUserByOAuthUserResponse(UserResponseInterface $response)

我这样做是为了记录数据:

$attr = $response->getResponse();
$this->logger->info(print_r($attr,true));

我得到一个带有info:

的输出数组
Array
(
    [id] => 1015539##########
    [name] => john smith
    [email] => johnsmith@gmail.com
    [picture] => Array
        (
            [data] => Array
                (
                    [is_silhouette] =>
                    [url] => https://fbcdn-profile-a.akamaihd.net/hprofile-ak-xaf1/v/t1.0-1/p50x50/10998###_1015530##########_207119375##########_n.jpg?oh=1f0e94af68daa############f888611&oe=5#######&__gda__=1###720385_a2c0bb15f160abf4############3289
                )
        )
)

(为隐私而添加了####和假名)

如何访问user_friends?

我相信它正在Facebook的最终工作,因为它在登录时要求许可。

2 个答案:

答案 0 :(得分:1)

你走在正确的轨道上。您在登录用户时获得了user_friends权限。

下一步是对/ me / friends边缘进行Graph API调用(使用此人当前获取的访问令牌)并解析响应。

我不知道您是否将Facebook SDK集成到您的PHP应用程序中,但如果是这样,您只需要执行此操作:

/* PHP SDK v4.0.0 */
/* make the API call */
$request = new FacebookRequest(
  $session,
  'GET',
  '/me/friends'
);
$response = $request->execute();
$graphObject = $response->getGraphObject();
/* handle the result */

或者你可以做一个卷曲电话。有关如何执行此操作的详细信息,请检查https://developers.facebook.com/docs/graph-api/reference/v2.3/user/friends

答案 1 :(得分:1)

我通过添加我的config.yml来完成它:

resource_owners:
   facebook:
        type:                facebook
        client_id:           "%fb_app_id%"
        client_secret:       "%fb_app_secret%"
        scope:               "email,user_friends"   
        infos_url:           "https://graph.facebook.com/me?fields=id,name,email,picture.type(square),friends"
        options:
            display: page
        paths:
          friends:  friends 
          profilepicture: picture.data.url

现在,在FOSUBUserProvider中的loadUserByOAuthUserResponse中,您可以从响应好友数据中获取。 SDK是不必要的。