Moh*_*lha 9 curl google-api oauth-2.0 google-oauth google-cloud-platform
我想使用 上传 pdf 文件到 Google Drive curl,以进行自动化测试。
我已经在 Google Cloud Platform 上创建了一个帐户(获取了客户端 ID 和 Secret)并启用了 Google Drive API。
使用 OAuth2 进行连接的所有方法都涉及 Web 浏览器或单击某些按钮,但我不打算这样做。
有什么方法可以使使用 OAuth2 进行身份验证并获取访问令牌的整个过程能够使用它上传文件,仅 curl在 cmd 终端中使用命令?
谢谢。
以下命令将向您展示如何使用 Curl 向 Google 授权。您必须至少使用一次网络浏览器才能获取刷新令牌,一旦您拥有刷新令牌,您就可以使用该命令再次请求新的令牌。
# Client id from Google Developer console
# Client Secret from Google Developer console
# Scope this is a space separated list of the scopes of access you are requesting.
# Authorization link. Place this in a browser and copy the code that is returned after you accept the scopes.
https://accounts.google.com/o/oauth2/auth?client_id=[Application Client Id]&redirect_uri=urn:ietf:wg:oauth:2.0:oob&scope=[Scopes]&response_type=code
# Exchange Authorization code for an access token and a refresh token.
curl \
--request POST \
--data "code=[Authentication code from authorization link]&client_id=[Application Client Id]&client_secret=[Application Client Secret]&redirect_uri=urn:ietf:wg:oauth:2.0:oob&grant_type=authorization_code" \
https://accounts.google.com/o/oauth2/token
# Exchange a refresh token for a new access token.
curl \
--request POST \
--data 'client_id=[Application Client Id]&client_secret=[Application Client Secret]&refresh_token=[Refresh token granted by second step]&grant_type=refresh_token' \
https://accounts.google.com/o/oauth2/token
Run Code Online (Sandbox Code Playgroud)
尖端:
上传分为两部分,您需要上传元数据,然后上传实际文件的文件流。
创建和更新之间存在差异。如果它是现有文件,您将需要使用更新而不是创建,否则您每次都会获得一个新文件。
从GoogleAuthenticationCurl.sh中窃取的代码
如果你想完全解放双手,那么你应该查看一个服务帐户,我无法帮助你在curl中做到这一点,我什至不确定它是否可能,因为所有的安全性和令牌的生成。
有关刷新令牌及其可能过期的官方文档
| 归档时间: |
|
| 查看次数: |
8537 次 |
| 最近记录: |