我想要一个脚本来获取 Google+ 的主页。我用于那个谷歌的 脚本。client-secrets.json 文件是:
{
"web": {
"client_id": "##########",
"client_secret": "############",
"redirect_uris": ["http://localhost:8080/oauth2callback/"],
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
"token_uri": "https://accounts.google.com/o/oauth2/token",
"client_email":"##########@developer.gserviceaccount.com",
"javascript_origins":["http://localhost:8080/"]
}
}
但是当我想启动这个应用程序时,它会打开一个带有错误和损坏机器人的页面:
The redirect URI in the request: http://localhost:8080/ did not match a registered redirect URI
请帮我解决我的问题。