1

所以我实现了 react native FBSDKGraphRequest 和登录按钮。登录工作正常,但是当我尝试用户的图形请求时,我希望 /me 端点返回而不是完整的对象

{ "id": "162036280799349", "birthday": "08/08/1980", "email": "test_ppjeffg_eight\u0040tfbnw.net", "first_name": "Test", "gender": "male", "last_name": "Eight", "link": "https://www.facebook.com/app_scoped_user_id/162036280799349/", "locale": "en_US", "name": "Test Eight", "timezone": -8, "updated_time": "2015-07-28T18:22:16+0000", "verified": false }

我只是得到

Object {name: "Test Eight", id: "162036280799349"}

尽管我已经根据文档完成了所有操作,但我很可能会错误地执行请求。以下是相关的源代码:

class LoadingOverlay extends BaseComponent{
    constructor(props){
        super(props);
        this._bind(/*'_fetchFriendsRequestFunction'*/);
        this.state = {isVisible: true,
                  token: null,
                  profileInfo: null}


    }

  _fetchGraphRequestFunction(){
    console.log("start");
    var fetchProfileRequest = new FBSDKGraphRequest((error, result) => {
  if (error) {
    alert('Error making request.');
  } else {
    // Data from request is in result
    console.log(result);
  }
}, '/me');
// Start the graph request.
fetchProfileRequest.start();

  }

    render(){
        return(
            <Overlay isVisible={this.state.isVisible}>
            <BlurView style={styles.background} blurType="dark">
            <FBSDKLoginButton
                onLoginFinished={(error,result)=>{
                    if (error){
                        alert('Error Logging In.');
                    } else {
                        if (result.isCanceled){
                            alert('Login Cancelled.');
                        } else {
                            FBSDKAccessToken.getCurrentAccessToken((token)=>{
                                console.log(token.tokenString);
                this._fetchGraphRequestFunction();
                            })


                        }
                    }
                }}
                onLogoutFinished={()=>console.log('Logged Out.')}
                readPermissions={['public_profile', 'email', 'user_birthday', 'user_friends']}
                publishPermissions={['publish_actions']}/>
            </BlurView>

      </Overlay>
        );
    }
}`
4

1 回答 1

2

您可以通过将它们附加到 uri 来从 Facebook 请求其他参数,如下所示:

/me?fields=id,name,email

或者通过调用 FBSDKGraphRequest 对象上的 addStringParameter 函数,如下所示:

fetchProfileRequest.addStringParameter('picture,email,gender','fields');

但是,您返回的字段取决于您的应用程序的权限和用户的设置。

另外,请注意 ios FB sdk 文档中的这个小技巧:https ://developers.facebook.com/docs/reference/ios/current/class/FBSDKLoginButton/

请注意,如果指定了读取权限,则不应指定发布权限。

所以尝试发送一个空的 publishPermissions 参数,看看是否修复了它。

此处更多信息: 不允许使用读取权限请求发布或管理权限 FACEBOOK SDK

https://coderwall.com/p/gkeqcq/request-read-and-publish-permissions-simultaneously-using-ios-facebook-support

如果有人拥有它,我很想看到一个流程示例,以使这项工作在本机反应中发挥作用。

于 2016-01-12T22:43:35.293 回答