Mark auth classes as deprecated
This commit is contained in:
parent
d6787424bb
commit
9e738cc82a
|
@ -33,6 +33,7 @@ module Google
|
|||
# drive = Drive::DriveService.new
|
||||
# drive.authorization = authorization
|
||||
#
|
||||
# @deprecated Use google-auth-library-ruby instead
|
||||
class InstalledAppFlow
|
||||
|
||||
RESPONSE_BODY = <<-HTML
|
||||
|
|
|
@ -18,6 +18,7 @@ module Google
|
|||
# Helper for loading keys from the PKCS12 files downloaded when
|
||||
# setting up service accounts at the APIs Console.
|
||||
#
|
||||
# @deprecated Use google-auth-library-ruby instead
|
||||
module KeyUtils
|
||||
##
|
||||
# Loads a key from PKCS12 file, assuming a single private key
|
||||
|
|
|
@ -21,6 +21,7 @@ module Google
|
|||
# JSON serialized file. Meant to resemble the serialized format
|
||||
# http://google-api-python-client.googlecode.com/hg/docs/epy/oauth2client.file.Storage-class.html
|
||||
#
|
||||
# @deprecated Use google-auth-library-ruby instead
|
||||
class Storage
|
||||
|
||||
AUTHORIZATION_URI = 'https://accounts.google.com/o/oauth2/auth'
|
||||
|
|
|
@ -21,6 +21,7 @@ module Google
|
|||
# JSON serialized file. Meant to resemble the serialized format
|
||||
# http://google-api-python-client.googlecode.com/hg/docs/epy/oauth2client.file.Storage-class.html
|
||||
#
|
||||
# @deprecated Use google-auth-library-ruby instead
|
||||
class FileStore
|
||||
|
||||
attr_accessor :path
|
||||
|
|
|
@ -16,6 +16,7 @@ require 'json'
|
|||
|
||||
module Google
|
||||
class APIClient
|
||||
# @deprecated Use google-auth-library-ruby instead
|
||||
class RedisStore
|
||||
|
||||
DEFAULT_REDIS_CREDENTIALS_KEY = "google_api_credentials"
|
||||
|
|
|
@ -23,7 +23,7 @@ module Google
|
|||
# inspired by the Google API Python client.
|
||||
#
|
||||
# @see https://developers.google.com/api-client-library/python/guide/aaa_client_secrets
|
||||
#
|
||||
# @deprecated Use google-auth-library-ruby instead
|
||||
# @example
|
||||
# {
|
||||
# "web": {
|
||||
|
@ -121,7 +121,7 @@ module Google
|
|||
def to_json
|
||||
return MultiJson.dump(to_hash)
|
||||
end
|
||||
|
||||
|
||||
def to_hash
|
||||
{
|
||||
self.flow => ({
|
||||
|
@ -146,7 +146,7 @@ module Google
|
|||
end
|
||||
}
|
||||
end
|
||||
|
||||
|
||||
def to_authorization
|
||||
gem 'signet', '>= 0.4.0'
|
||||
require 'signet/oauth_2/client'
|
||||
|
|
Loading…
Reference in New Issue