无法使用 javascript 从 Web 应用授权 Google Sheets v4 API
Unable to authorize to Google Sheets v4 API from web app using javascript
当 运行 我的 localhost:8080 上的 Web 应用程序使用 v4 的 quickstart 时,我能够读取数据并将数据写入 google sheet API.
当我在外部 tomcat 服务器上部署应用程序时,授权似乎不会在加载时发生
<script src="https://apis.google.com/js/client.js?onload=checkAuth">
我是 运行 http://10.200.99.110:8080/MyApp
的申请。在 API 经理凭据中,我输入了 'Web Application' 和 Javascript origin uris' as
http://localhost:8080
http://10.200.99.110:8080
我是 OAuth 的初学者,如果能帮助我使用它,我将不胜感激。
显然 tomcat 中存在一些问题,我在部署新的 war 文件后从 tomcat 管理器重新加载并且成功了。
此外,我注意到在 Google API 凭据管理器中修改 javascript origin uris 需要几分钟才能反映在应用程序中。
当 运行 我的 localhost:8080 上的 Web 应用程序使用 v4 的 quickstart 时,我能够读取数据并将数据写入 google sheet API.
当我在外部 tomcat 服务器上部署应用程序时,授权似乎不会在加载时发生
<script src="https://apis.google.com/js/client.js?onload=checkAuth">
我是 运行 http://10.200.99.110:8080/MyApp
的申请。在 API 经理凭据中,我输入了 'Web Application' 和 Javascript origin uris' as
http://localhost:8080
http://10.200.99.110:8080
我是 OAuth 的初学者,如果能帮助我使用它,我将不胜感激。
显然 tomcat 中存在一些问题,我在部署新的 war 文件后从 tomcat 管理器重新加载并且成功了。
此外,我注意到在 Google API 凭据管理器中修改 javascript origin uris 需要几分钟才能反映在应用程序中。