let user = GIDSignIn.sharedInstance().currentUser
let auth = user!.authentication
let authorizer = auth!.fetcherAuthorizer()
But now I get an error on the last line where I try to access fetcherAuthorizer. "GIDAuthentication has no member fetchAuthorizer"
My podfile look like this:
platform :ios, "9.0"
use_frameworks!
target "xxxx" do
pod 'GoogleSignIn'
pod 'GoogleAPIClientForREST/YouTube'
pod 'Firebase/Core', '~> 4'
pod 'Firebase/Messaging', '~> 4'
end
I have imported GTLRYoutube.h in my bridging header:#import <GoogleAPIClientForRest/GTLRYouTube.h>
Can someone help me?