Error: invalid_scope - This app hasn't been verified to access

安稳与你 提交于 2019-12-24 00:47:07

问题


Has anyone experienced this error before? I have been researching, testing, and banging my head to get this error to go away but nothing seems to work.

This is a similar question to the following posts:

Error: invalid_scope google read contact
Google Api:: Error: invalid_scope
403 error when calling Google People API

Unfortunately, these posts never were resolved or aren't helpful.

What is puzzling is, i'm following the examples listed here: https://developers.google.com/api-client-library/javascript/samples/samples. Along with testing the ONLY the scopes I need here: https://developers.google.com/people/api/rest/v1/people/get.

However, I cannot seem to get past the popup screen that states i'm passing an invalid scope.

FYI, I have the API Console setup to use Google People API, Google+, and Google Contacts. I'm using my client id and api key in the "gapi.auth2.init" config call.

Any insight would be super helpful! Thank you for your time and response.


回答1:


This is a scope issue because my web application has not been verified by Google for OAuth.

As a developer you can test the source by entering your test account(s) here: https://groups.google.com/forum/#!forum/risky-access-by-unreviewed-apps

To get approval you must submit the form here: https://support.google.com/code/contact/oauth_app_verification




回答2:


I copied and paste code from google developers example page Search list

and that example didn't work for me. I got the same error about invalid scope...

Solution was to change below line:

private static final Collection<String> SCOPES = Arrays.asList("YouTubeScopes.https://www.googleapis.com/auth/youtube.force-ssl YouTubeScopes.https://www.googleapis.com/auth/youtubepartner");

with following line:

private static final Collection<String> SCOPES = Arrays.asList("https://www.googleapis.com/auth/youtube.force-ssl https://www.googleapis.com/auth/youtubepartner");

Basically I just get rid of "YouTubeScopes" prefix and it has started to work.




回答3:


after googling some time I've come across this question and the list of scopes of google:

https://developers.google.com/identity/protocols/googlescopes

Just in case this helps.



来源:https://stackoverflow.com/questions/44329890/error-invalid-scope-this-app-hasnt-been-verified-to-access

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!