在android上的react-native应用程序中,当我尝试使用以下调用登录facebook时出现错误,
Parse.FacebookUtils.logIn(<scope>)
这是我得到的错误,
{
code: undefined,
message: 'unauthorized',
line: 10800,
column: 21,
sourceURL: 'http://localhost:8081/index.android.bundleplatform=android&dev=true&hot=true&minify=false'
}
我有如下所示的初始化代码,
Parse.initialize('myapp');
Parse.serverURL = `${serverURL}/parse`;
FacebookSDK.init();
Parse.FacebookUtils.init();
我还设置了parse-server
自述文件中提到的facebookAppIds
Facebook登录部分工作正常,因为应用程序可以访问用户配置文件,但不会在解析服务器上创建用户帐户。我不知道是否需要为服务器使用任何其他密钥。