使用Gmail OAuth 2.0连接

时间:2019-02-01 02:01:00

标签: oauth-2.0 gmail

我正在尝试使用OAuth 2.0连接到Gmail。

但是,无法测试您是否无法加入未审查的风险访问应用程序组。

Google是否阻止参加该小组?还是还有其他方法?

连接方法请参阅以下文章。 https://developers.google.com/gmail/imap/xoauth2-protocol

1 个答案:

答案 0 :(得分:0)

我在待处理的Google API中问了一个问题。

此后,主页的内容将被更新。

我看不到要在“未审查的应用访问风险”组中注册的句子。

我在iOS上开发。

问题是未完成登录时未添加G-Mail连接授权的特权。

我通过添加G-Mail权限解决了这个问题。

其他权限来源

[GIDSignIn sharedInstance].scopes = [NSArray arrayWithObjects:@"https://www.googleapis.com/auth/userinfo.profile", @"https://www.googleapis.com/auth/userinfo.email", @"https://mail.google.com", nil];

IMAP JAVA连接测试:https://github.com/google/gmail-oauth2-tools/wiki/JavaSampleCode