• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ios - 使用 Google 登录实现 Google Drive API - iOS

[复制链接]
菜鸟教程小白 发表于 2022-12-13 15:48:55 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我正在尝试将 Google Drive API 实现到已在使用 Google Sign In SDK 的项目中。我已将 Google Drive 的范围添加到 GIDSignIn 单例中,但 Drive API 似乎要求用户再次登录。有没有办法在初次登录时通过 Google Sign In 完成对 Google Drive API 的授权,而不是强制用户登录两次?

我在这里读过一个类似的问题,Can I use google drive sdk with authentication info from google sign-in sdk on iOS? ,但响应从未成功从 Google 登录返回的 GIDAuthentication 创建 Google Drive 所需的 GTMOAuth2Authentication。



Best Answer-推荐答案


我的 iOS 应用也遇到了同样的问题,还查看了类似的问题 Can I use Google Drive SDK with sign in information from Google Sign In SDK in iOS .根据 Eran Marom 的回答,我能够将我的 Google 登录凭据转换为 OAuth2 凭据,我用它来成功访问 Apps Script Execute API。

我曾在 Swift 中工作。

在应用代理中:

import GTMOAuth2

@UIApplicationMain

class AppDelegate: UIResponder, UIApplicationDelegate, GIDSignInDelegate {

var window: UIWindow?

//Create an authorization fetcher, which will be used to pass credentials on to the API request
var myAuth: GTMFetcherAuthorizationProtocol? = nil

// [START didfinishlaunching]
func application(application: UIApplication,
                 didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
    // Initialize sign-in
    var configureError: NSError?
    GGLContext.sharedInstance().configureWithError(&configureError)
    assert(configureError == nil, "Error configuring Google services: \(configureError)")

    GIDSignIn.sharedInstance().delegate = self

    let scopes = "https://www.googleapis.com/auth/drive"
    GIDSignIn.sharedInstance().scopes.append(scopes)

    return true
}
//....

func signIn(signIn: GIDSignIn!, didSignInForUser user: GIDGoogleUser!,
            withError error: NSError!) {
    if (error == nil) {

        //sets credentials in fetcher
myAuth = user.authentication.fetcherAuthorizer()

        //...
    } else {
}
//....

在 View Controller 中:

import UIKit
import GoogleAPIClient
import GTMOAuth2

@objc(ViewController)

class ViewController: UITableViewController, GIDSignInUIDelegate {

private let kClientID = "CLIENT ID"
private let kScriptId = "SCRIPT ID"
private let service = GTLService()

override func viewDidLoad() {
    super.viewDidLoad()

    GIDSignIn.sharedInstance().uiDelegate = self
//...
}

func toggleAuthUI() {
    if (GIDSignIn.sharedInstance().hasAuthInKeychain()){

        self.service.authorizer = appDelegate.myAuth
      //...  
    callAppsScript()
    } else {
//...
    }

@objc func receiveToggleAuthUINotification(notification: NSNotification) {
    if (notification.name == "ToggleAuthUINotification") {
        self.toggleAuthUI()
        if notification.userInfo != nil {
            let userInfoictionary<String,String!> =
                notification.userInfo as! Dictionary<String,String!>
            self.statusText.text = userInfo["statusText"]
        }
    }
}

func callAppsScript() {

    let baseUrl = "https://script.googleapis.com/v1/scripts/\(kScriptId):run"
    let url = GTLUtilities.URLWithString(baseUrl, queryParameters: nil)

    // Create an execution request object.
    var request = GTLObject()
    request.setJSONValue("APPS_SCRIPT_FUCTION", forKey: "function")

    // Make the API request.
    service.fetchObjectByInsertingObject(request,
        forURL: url,
        delegate: self,
        didFinishSelector: "displayResultWithTicket:finishedWithObject:error:")
}

func displayResultWithTicket(ticket: GTLServiceTicket,
                             finishedWithObject object : GTLObject,
                                                error : NSError?) {
//Display results...
}

关于ios - 使用 Google 登录实现 Google Drive API - iOS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36366955/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap