iOS ऐप्लिकेशन में Google API ऐक्सेस करना

Drive, Gmail जैसी Google की कुछ सेवाएं, सार्वजनिक एपीआई उपलब्ध कराती हैं जिसका इस्तेमाल करके, ऐसे ऐप्लिकेशन बनाए जा सकते हैं जो इन ऐप्लिकेशन में लोगों के डेटा का इस्तेमाल करने में उनकी मदद करते हैं सेवाओं. इन सेवाओं को ऐक्सेस करने के लिए, ऐप्लिकेशन को OAuth 2.0 में से किसी एक को लागू करना होगा क्लाइंट फ़्लो, उपयोगकर्ताओं की सहमति लेने और ऐक्सेस टोकन पाने के लिए किया जाता है. कुछ एपीआई ऐक्सेस कर सकता है.

Google साइन-इन लाइब्रेरी का इस्तेमाल किया जा सकता है.यह लाइब्रेरी, ताकि साइन-इन किए हुए उपयोगकर्ता के लिए ऐक्सेस टोकन मिल सकें.

शुरू करने से पहले

आपको 'Google साइन-इन' का बुनियादी इंटिग्रेशन पूरा करना होगा.

1. देखें कि कौनसे दायरे दिए गए हैं

Google API को कॉल करने से पहले, देख लें कि कौनसे स्कोप पहले ही इस्तेमाल किए जा चुके हैं GIDGoogleUser की grantedScopes प्रॉपर्टी का इस्तेमाल करके, आपके ऐप्लिकेशन को दिया गया:

Swift

let driveScope = "https://www.googleapis.com/auth/drive.readonly"
let grantedScopes = user.grantedScopes
if grantedScopes == nil || !grantedScopes!.contains(driveScope) {
  // Request additional Drive scope.
}

Objective-C

NSString *driveScope = @"https://www.googleapis.com/auth/drive.readonly";

// Check if the user has granted the Drive scope
if (![user.grantedScopes containsObject:driveScope]) {
  // request additional drive scope
}

उपयोगकर्ता ने कोई खास दायरा दिया है या नहीं, इसके आधार पर किसी अतिरिक्त दायरे का अनुरोध करने की ज़रूरत है, ताकि इंटरैक्शन.

2. अतिरिक्त दायरों का अनुरोध करें

अगर आपको अतिरिक्त दायरों का अनुरोध करना है, तो addScopes:presentingViewController:completion या उपयोगकर्ता से आपका ऐप्लिकेशन इस्तेमाल करने का अनुरोध करने के लिए addScopes:presentingWindow:completion का अतिरिक्त ऐक्सेस है.

उदाहरण के लिए, उपयोगकर्ता की Drive की फ़ाइलों को रीड ओनली ऐक्सेस देने का अनुरोध करने के लिए:

Swift

let additionalScopes = ["https://www.googleapis.com/auth/drive.readonly"]
guard let currentUser = GIDSignIn.sharedInstance.currentUser else {
    return ;  /* Not signed in. */
}

currentUser.addScopes(additionalScopes, presenting: self) { signInResult, error in
    guard error == nil else { return }
    guard let signInResult = signInResult else { return }

    // Check if the user granted access to the scopes you requested.
}

Objective-C

NSArray *additionalScopes = @[ @"https://www.googleapis.com/auth/drive.readonly" ];
GIDGoogleUser *currentUser = GIDSignIn.sharedInstance.currentUser;

[currentUser addScopes:additionalScopes
           presentingViewController:self
                         completion:^(GIDSignInResult * _Nullable signInResult,
                                      NSError * _Nullable error) {
    if (error) { return; }
    if (signInResult == nil) { return; }

    // Check if the user granted access to the scopes you requested.
}];

3. नए टोकन के साथ एपीआई कॉल करें

यह पक्का करने के लिए कि आपके Google API कॉल में हमेशा ऐसे ऐक्सेस टोकन मौजूद रहें जिनकी समयसीमा खत्म न हुई हो इस ईमेल के साथ, कॉल को refreshTokensIfNeededWithCompletion: ब्लॉक में रैप करें:

Swift

currentUser.refreshTokensIfNeeded { user, error in
    guard error == nil else { return }
    guard let user = user else { return }

    // Get the access token to attach it to a REST or gRPC request.
    let accessToken = user.accessToken.tokenString

    // Or, get an object that conforms to GTMFetcherAuthorizationProtocol for
    // use with GTMAppAuth and the Google APIs client library.
    let authorizer = user.fetcherAuthorizer()
}

Objective-C

[currentUser refreshTokensIfNeededWithCompletion:^(
                              GIDGoogleUser * _Nullable user,
                              NSError * _Nullable error) {
    if (error) { return; }
    if (user == nil) { return; }

    // Get the access token to attach it to a REST or gRPC request.
    NSString *accessToken = user.accessToken.tokenString;

    // Or, get an object that conforms to GTMFetcherAuthorizationProtocol for
    // use with GTMAppAuth and the Google APIs client library.
    id<GTMFetcherAuthorizationProtocol> authorizer = [user fetcherAuthorizer];
}];

एपीआई को कॉल करने के लिए, ऐक्सेस टोकन का इस्तेमाल करें. इसके लिए, किसी REST या gRPC अनुरोध (Authorization: Bearer ACCESS_TOKEN) का हेडर, या फ़ेचर के लिए अनुमति देने वाले टूल का इस्तेमाल करके Google API क्लाइंट लाइब्रेरी.