Ruby google_drive gem oAuth2节省

Duc*_*337 3 ruby oauth google-drive-api

所以在更新之前有一种简单的方法来登录谷歌驱动器并操纵你的谷歌文档 - 使用红宝石.

在您使用此功能登录Google云端硬盘之前.

require 'google_drive'
$session = GoogleDrive.login("email@gmail.com", "password")
Run Code Online (Sandbox Code Playgroud)

但是现在你收到警告信息:

WARNING: GoogleDrive.login is deprecated and will be removed in the next version. Use GoogleDrive.login_with_oauth instead.
Run Code Online (Sandbox Code Playgroud)

所以我去了git hub页面,看看google是如何让我们使用高级语言的服务,并发现他们希望我们使用oAuth2.像这样.

require 'google/api_client'
require 'google_drive'

client = Google::APIClient.new(
  :application_name => 'Example Ruby application',
  :application_version => '1.0.0'
)
auth = client.authorization
auth.client_id = "YOUR CLIENT ID"
auth.client_secret = "YOUR CLIENT SECRET"
auth.scope =
    "https://www.googleapis.com/auth/drive " +
    "https://spreadsheets.google.com/feeds/"
auth.redirect_uri = "urn:ietf:wg:oauth:2.0:oob"
print("1. Open this page:\n%s\n\n" % auth.authorization_uri)
print("2. Enter the authorization code shown in the page: ")
auth.code = $stdin.gets.chomp
auth.fetch_access_token!
access_token = auth.access_token

$session = GoogleDrive.login_with_oauth(access_token)
Run Code Online (Sandbox Code Playgroud)

这很好,除了我无法保存auth变量.我想在脚本中对此进行硬编码,因此我不必继续谷歌来获取新的access_token.

所以我试图获取access_token并将其添加到脚本中.

require 'google/api_client'
require 'google_drive'

client = Google::APIClient.new
access_token = "TokenFromGoogleHardCoded"

$session = GoogleDrive.login_with_oauth(access_token)

# $session doesn't connect
Run Code Online (Sandbox Code Playgroud)

我不确定我是否在正确的庄园里攻击这个问题.我想保存完整的auth变量并在我的脚本中硬编码.

Duc*_*337 8

我想出了这个烂摊子.

auth.scope =
    "https://www.googleapis.com/auth/drive " +
    "https://spreadsheets.google.com/feeds/"
Run Code Online (Sandbox Code Playgroud)

auth.scope缺少一个url.来自github的参考

auth.scope =
    "https://docs.google.com/feeds/" +
    "https://www.googleapis.com/auth/drive " +
    "https://spreadsheets.google.com/feeds/"
Run Code Online (Sandbox Code Playgroud)

您可以重复使用access_token,但首先需要获取它.警告:auth.access_token仅适用于一小时.如果你需要另一个,你需要调用auth.refresh!这将发给您另一个access_token.

require 'google/api_client'
require 'google_drive'

client = Google::APIClient.new(
  :application_name => 'Example Ruby application',
  :application_version => '1.0.0'
)
auth = client.authorization
auth.client_id = "YOUR CLIENT ID"
auth.client_secret = "YOUR CLIENT SECRET"
auth.scope =
    "https://www.googleapis.com/auth/drive " +
    "https://spreadsheets.google.com/feeds/"
auth.redirect_uri = "urn:ietf:wg:oauth:2.0:oob"
print("1. Open this page:\n%s\n\n" % auth.authorization_uri)
print("2. Enter the authorization code shown in the page: ")
auth.code = $stdin.gets.chomp
auth.fetch_access_token!
access_token = auth.access_token

system'clear'
print "Save your access token\n\n"
print access_token  
print "\nSave your refresh token\n\n"
print auth.refresh_token 
Run Code Online (Sandbox Code Playgroud)

这段代码应该在您的控制台中打印出access_token/refresh_token.现在您可以对应用程序进行硬编码.

require "google/api_client"
require "google_driver"
client = Google::APIClient.new(
  :application_name => 'Example Ruby application',
  :application_version => '1.0.0'
)
auth = client.authorization
auth.client_id = "Your Client ID"
auth.client_secret = "Your client secret"

access_token = "token you saved from the terminal"

session = GoogleDrive.login_with_oauth(access_token)

for file in session.files
   p file.title
end
Run Code Online (Sandbox Code Playgroud)

最终你的"access_token"将过期.此时你需要"刷新"它.您可以通过调用来调用以查看您的access_token是否已过期

auth.expires_at
Run Code Online (Sandbox Code Playgroud)

您可以使用此示例获取新的访问令牌.

require 'google/api_client'
require 'google_drive'


$client_id = "YOUR CLIENT ID"
$client_secret = "YOUR CLIENT SECRET"
$refresh_token = "SAVED REFRESH TOKEN"

 client = Google::APIClient.new(:application_name => 'Example Ruby application', :application_version => '1.0.0')
    auth = client.authorization
    auth.client_id = $client_id
    auth.client_secret = $client_secret
    auth.scope = "https://docs.google.com/feeds/" + "https://www.googleapis.com/auth/drive " + "https://spreadsheets.google.com/feeds/"
    auth.redirect_uri = "urn:ietf:wg:oauth:2.0:oob"
    auth.refresh_token = $refresh_token

    #here's the magic sauce 
    auth.refresh! 

    #as you can see above auth.access_token wasn't passed a value
    # but if you call it now you'll see you have a new access_token

    auth.access_token
    => new token from server 
Run Code Online (Sandbox Code Playgroud)