在React Native中使用Google Contacts Api

时间:2018-09-12 23:48:22

标签: javascript react-native google-api

当前,我已经在Vue网页上实现了Google Contacts API:

gapi.auth.authorize(this.configGoogle, () => {
   this.fetchContacts(gapi.auth.getToken());
});

现在,在我的React Native App中,我找不到实现此方法的方法,我需要插件才能登录Google帐户吗?然后使用Google Contact API JS来获取联系人?谢谢

1 个答案:

答案 0 :(得分:0)

您可以使用此https://github.com/react-native-community/react-native-google-signin

使用上面的插件,它将弹出以供Google登录。获得ACCESS_TOKEN后,您可以使用它调用Google api以获得联系人。

这里有一篇文章告诉您该怎么做:https://medium.com/@aleenavadayil1995/google-contacts-api-in-react-native-53107115056c

关于Android版本的React-native-google-signin,请注意一点,请注意,要从〜/ .android / debug.keystore生成SHA1,这花了我很长时间才能弄清楚