2

背景:
我正在开发一个提供与 Google Drive 连接的设备应用程序。我的最终用户需要登录他们的 Google 帐户并授权我的应用程序访问他们的 Google Drive。

我正在使用 OAuth 2.0 来执行此操作。但我担心的是,我不希望用户使用 Google 登录页面上的链接离开我的应用程序。基本上,我不希望他们使用我的应用程序来浏览互联网。

问题:
如果我使用 GreaseMonkey 或 TamperMonkey 隐藏或更改链接的链接,我会违反任何服务/使用条款吗?更改只会发生在客户端,我根本不会更改任何处理。

我已经检查了https://developers.google.com/terms/但我没有发现与修改客户端页面相关的项目。

提前致谢。

4

1 回答 1

0

What kind of device? If you’re on Android, check out the Google Drive API and GoogleAuthUtil, you probably don’t need to code your own OAuth 2 support. On iOS we’ve been shipping a bunch of library-ware to help you similarly.

But if you’re doing OAuth 2 via a browser, it would be highly inappropriate to screw around with the Google Login page. Also I suspect that the page will try to resist such attempts, but I don’t know the details.

于 2013-10-22T00:56:50.123 回答