我无法在React Native中的fbsdk
中获取AccessToken。
我按Facebook的建议调用核心:
const FBSDKCore = require('react-native-fbsdkcore');
const {
FBSDKAccessToken,
} = FBSDKCore;
在一个场景中,我尝试按照此处所述的类似问题的建议在日志中写入令牌。
<View>
<View style={{flex: 1, alignItems: 'center', padding: 50, marginTop: 250}}>
<View>
<LoginButton
publishPermissions={["publish_actions"]}
onLoginFinished={
(error, result) => {
if (error) {
alert("login has error: " + result.error);
} else if (result.isCancelled) {
alert("login is cancelled.");
} else {
FBSDKAccessToken.getCurrentAccessToken((token)=> {
console.log(token);
});
Actions.Navigator()
}
}
}
onLogoutFinished={() => {
alert("logout.")}}/>
</View>
</View>
</View>
这给了我红色屏幕“undefined不是对象(评估FBSDKAccessTokenInterface.getCurrentAccessToken)
尝试在app的其他部分拉出类似的东西,当然首先定义const FBSDKAccessToken
,然后调用userID
(应该是FBSDKCore
的一部分)为:
<Text style={{fontSize: 18, color:colors.General.navtext}}>{FBSDKAccessToken.userID}</Text>
什么都不产生,我相信它会返回登录用户的userID。另外,如果我尝试在同一个地方写出:accessstoken:
<Text style={{fontSize: 18, color:colors.General.navtext}}>{FBSDKAccessToken.getCurrentAccessToken()}</Text>
我得到和以前一样的红色屏幕。
我试图查看图书馆的链接,但这甚至引起了进一步的问题。
因此,从此,我陷入困境,我真的很感激对错误的反馈。
答案 0 :(得分:0)
试试这个。
console.log(token.accessToken.toString());