अपने Android ऐप्लिकेशन में Google Sign-In को इंटिग्रेट करना
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
अपने Android ऐप्लिकेशन में 'Google साइन इन' को इंटिग्रेट करने के लिए, 'Google साइन इन' को कॉन्फ़िगर करें. इसके बाद, अपने ऐप्लिकेशन के लेआउट में एक बटन जोड़ें, ताकि साइन इन करने की प्रोसेस शुरू हो सके.
शुरू करने से पहले
Google API कंसोल प्रोजेक्ट को कॉन्फ़िगर करें और Android Studio प्रोजेक्ट सेट अप करें.
Google साइन-इन और GoogleSignInClient ऑब्जेक्ट को कॉन्फ़िगर करना
साइन इन करने की गतिविधि के onCreate तरीके में, Google से साइन इन करने की सुविधा को कॉन्फ़िगर करें, ताकि आपका ऐप्लिकेशन उपयोगकर्ता से ज़रूरी डेटा का अनुरोध कर सके. उदाहरण के लिए, उपयोगकर्ताओं के आईडी और बुनियादी प्रोफ़ाइल की जानकारी का अनुरोध करने के लिए, Google से साइन इन करने की सुविधा को कॉन्फ़िगर करने के लिए, DEFAULT_SIGN_IN पैरामीटर के साथ GoogleSignInOptions ऑब्जेक्ट बनाएं. अगर आपको उपयोगकर्ताओं के ईमेल पतों का अनुरोध भी करना है, तो GoogleSignInOptions ऑब्जेक्ट को requestEmail विकल्प के साथ बनाएं.
// Configure sign-in to request the user's ID, email address, and basic// profile. ID and basic profile are included in DEFAULT_SIGN_IN.GoogleSignInOptionsgso=newGoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN).requestEmail().build();
अगर आपको Google API ऐक्सेस करने के लिए, अतिरिक्त स्कोप का अनुरोध करना है, तो उन्हें requestScopes के साथ बताएं.
उपयोगकर्ता को बेहतर अनुभव देने के लिए, साइन इन करने के दौरान सिर्फ़ उन स्कोप के लिए अनुरोध करें जो आपके ऐप्लिकेशन के लिए ज़रूरी हैं. किसी भी अतिरिक्त स्कोप का अनुरोध सिर्फ़ तब करें, जब आपको उनकी ज़रूरत हो. इससे आपके उपयोगकर्ताओं को सहमति वाली स्क्रीन, उनकी की गई कार्रवाई के हिसाब से दिखेगी.
ज़्यादा स्कोप का अनुरोध करना लेख पढ़ें.
इसके बाद, साइन-इन गतिविधि के onCreate तरीके में, आपके दिए गए विकल्पों के साथ एक GoogleSignInClient ऑब्जेक्ट बनाएं.
// Build a GoogleSignInClient with the options specified by gso.mGoogleSignInClient=GoogleSignIn.getClient(this,gso);
साइन इन किए हुए किसी मौजूदा उपयोगकर्ता की जांच करना
अपनी गतिविधि के onStart तरीके में देखें कि किसी उपयोगकर्ता ने Google खाते से आपके ऐप्लिकेशन में पहले से साइन इन किया है या नहीं.
// Check for existing Google Sign In account, if the user is already signed in// the GoogleSignInAccount will be non-null.GoogleSignInAccountaccount=GoogleSignIn.getLastSignedInAccount(this);updateUI(account);
अगर GoogleSignIn.getLastSignedInAccount, null के बजाय GoogleSignInAccount ऑब्जेक्ट दिखाता है, तो इसका मतलब है कि उपयोगकर्ता ने पहले ही Google खाते से आपके ऐप्लिकेशन में साइन इन कर लिया है.
इसके मुताबिक, अपने यूज़र इंटरफ़ेस (यूआई) को अपडेट करें. जैसे, साइन इन बटन को छिपाएं, अपनी मुख्य गतिविधि शुरू करें या अपने ऐप्लिकेशन के लिए जो भी सही हो उसे करें.
अगर GoogleSignIn.getLastSignedInAccount, null दिखाता है, तो इसका मतलब है कि उपयोगकर्ता ने अब तक Google खाते से आपके ऐप्लिकेशन में साइन इन नहीं किया है. Google से साइन इन करने का बटन दिखाने के लिए, अपने यूज़र इंटरफ़ेस (यूआई) को अपडेट करें.
अपने ऐप्लिकेशन में 'Google से साइन इन करें' बटन जोड़ना
ज़रूरी नहीं: अगर आपने साइन इन बटन की अपनी ऐसेट देने के बजाय, डिफ़ॉल्ट साइन-इन बटन ग्राफ़िक का इस्तेमाल किया है, तो setSize तरीके से बटन के साइज़ को पसंद के मुताबिक बनाया जा सकता है.
// Set the dimensions of the sign-in button.SignInButtonsignInButton=findViewById(R.id.sign_in_button);signInButton.setSize(SignInButton.SIZE_STANDARD);
Android गतिविधि में (उदाहरण के लिए, onCreate तरीके में), अपने बटन के OnClickListener को रजिस्टर करें, ताकि क्लिक करने पर उपयोगकर्ता साइन इन कर सके:
ऐक्टिविटी के onClick मेथड में, साइन इन बटन पर टैप करने की सुविधा को मैनेज करें. इसके लिए, getSignInIntent
मेथड का इस्तेमाल करके साइन इन करने का इंटेंट बनाएं और startActivityForResult का इस्तेमाल करके इंटेंट शुरू करें.
इस इंटेंट को शुरू करने पर, उपयोगकर्ता को साइन इन करने के लिए Google खाता चुनने का अनुरोध किया जाता है. अगर आपने profile, email, और openid से ज़्यादा स्कोप का अनुरोध किया है, तो उपयोगकर्ता को अनुरोध किए गए संसाधनों का ऐक्सेस देने के लिए भी कहा जाता है.
उपयोगकर्ता के साइन इन करने के बाद, आपको गतिविधि के onActivityResult तरीके में उपयोगकर्ता के लिए GoogleSignInAccount ऑब्जेक्ट मिल सकता है.
getEmail की मदद से, उपयोगकर्ता का ईमेल पता भी पाया जा सकता है. साथ ही, getId की मदद से, उपयोगकर्ता का Google आईडी (क्लाइंट-साइड के इस्तेमाल के लिए) और getIdToken की मदद से, उपयोगकर्ता के लिए आईडी टोकन पाया जा सकता है.
अगर आपको इस समय साइन-इन किए हुए उपयोगकर्ता की जानकारी किसी बैकएंड सर्वर को देनी है, तो अपने बैकएंड सर्वर को आईडी टोकन भेजें और सर्वर पर टोकन की पुष्टि करें.
इस पेज पर मौजूद कॉन्टेंट और कोड सैंपल कॉन्टेंट के लाइसेंस में बताए गए लाइसेंस के हिसाब से हैं. Java और OpenJDK, Oracle और/या इससे जुड़ी हुई कंपनियों के ट्रेडमार्क या रजिस्टर किए हुए ट्रेडमार्क हैं.
आखिरी बार 2025-07-27 (UTC) को अपडेट किया गया.
[[["समझने में आसान है","easyToUnderstand","thumb-up"],["मेरी समस्या हल हो गई","solvedMyProblem","thumb-up"],["अन्य","otherUp","thumb-up"]],[["वह जानकारी मौजूद नहीं है जो मुझे चाहिए","missingTheInformationINeed","thumb-down"],["बहुत मुश्किल है / बहुत सारे चरण हैं","tooComplicatedTooManySteps","thumb-down"],["पुराना","outOfDate","thumb-down"],["अनुवाद से जुड़ी समस्या","translationIssue","thumb-down"],["सैंपल / कोड से जुड़ी समस्या","samplesCodeIssue","thumb-down"],["अन्य","otherDown","thumb-down"]],["आखिरी बार 2025-07-27 (UTC) को अपडेट किया गया."],[],[],null,["# Integrate Google Sign-In into Your Android App\n\n| **Warning:**\n|\n| **The Google Sign-In for Android API is outdated and no longer supported.**\n| To ensure the continued security and usability of your app, [migrate your Sign in with\n| Google implementation to Credential Manager](/identity/sign-in/credential-manager-siwg) today. Credential Manager\n| supports passkey, password, and federated identity authentication (such as\n| Sign-in with Google), stronger security, and a more consistent user\n| experience.\n|\n| **For Wear developers:** Credential Manager will be supported in Wear OS\n| 5.1 and later on selected watches. Developers actively supporting Wear OS 3, 4\n| and 5.0 devices with Sign in with Google should continue using Google Sign-in\n| for Android for your Wear applications. Sign in with Google support will be\n| available on Credential Manager APIs for these versions of WearOS at a later\n| date.\n\nTo integrate Google Sign-In into your Android app, configure Google Sign-In and\nadd a button to your app's layout that starts the sign-in flow.\n\nBefore you begin\n----------------\n\nConfigure a Google API Console project and set up your Android Studio project.\n\nConfigure Google Sign-in and the GoogleSignInClient object\n----------------------------------------------------------\n\n1. In your sign-in activity's `onCreate` method, configure Google Sign-In to\n request the user data required by your app. For example, to configure\n Google Sign-In to request users' ID and basic profile information, create a\n [`GoogleSignInOptions`](https://developers.google.com/android/reference/com/google/android/gms/auth/api/signin/GoogleSignInOptions.Builder.html#GoogleSignInOptions.Builder())\n object with the `DEFAULT_SIGN_IN` parameter. To request users' email\n addresses as well, create the `GoogleSignInOptions` object with the\n `requestEmail` option.\n\n ```carbon\n // Configure sign-in to request the user's ID, email address, and basic\n // profile. ID and basic profile are included in DEFAULT_SIGN_IN.\n GoogleSignInOptions gso = new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN)\n .requestEmail()\n .build();\n ```\n\n If you need to request additional scopes to access Google APIs, specify them\n with [`requestScopes`](https://developers.google.com/android/reference/com/google/android/gms/auth/api/signin/GoogleSignInOptions.Builder.html#requestScopes(com.google.android.gms.common.api.Scope,%20com.google.android.gms.common.api.Scope...)).\n For the best user experience, on sign-in, only request the scopes that are\n required for your app to minimally function. Request any additional scopes\n only when you need them, so that your users see the consent screen in the\n context of an action they performed.\n See [Requesting Additional Scopes](https://developers.google.com/identity/sign-in/android/additional-scopes).\n2. Then, also in your sign-in activity's `onCreate` method, create a\n `GoogleSignInClient` object with the options you specified.\n\n ```scilab\n // Build a GoogleSignInClient with the options specified by gso.\n mGoogleSignInClient = GoogleSignIn.getClient(this, gso);\n ```\n\nCheck for an existing signed-in user\n------------------------------------\n\nIn your activity's `onStart` method, check if a user has already signed in to\nyour app with Google. \n\n```scilab\n// Check for existing Google Sign In account, if the user is already signed in\n// the GoogleSignInAccount will be non-null.\nGoogleSignInAccount account = GoogleSignIn.getLastSignedInAccount(this);\nupdateUI(account);\n```\n\nIf `GoogleSignIn.getLastSignedInAccount` returns a `GoogleSignInAccount` object\n(rather than `null`), the user has already signed in to your app with Google.\nUpdate your UI accordingly---that is, hide the sign-in button, launch your\nmain activity, or whatever is appropriate for your app.\n\nIf `GoogleSignIn.getLastSignedInAccount` returns `null`, the user has not yet\nsigned in to your app with Google. Update your UI to display the Google Sign-in\nbutton.\n| **Note:** If you need to detect changes to a user's auth state that happen outside your app, such as access token or ID token revocation, or to perform cross-device sign-in, you might also call `GoogleSignInClient.silentSignIn` when your app starts.\n\nAdd the Google Sign-in button to your app\n-----------------------------------------\n\n1.\n Add the [`SignInButton`](https://developers.google.com/android/reference/com/google/android/gms/common/SignInButton)\n in your application's layout:\n\n \u003ccom.google.android.gms.common.SignInButton\n android:id=\"@+id/sign_in_button\"\n android:layout_width=\"wrap_content\"\n android:layout_height=\"wrap_content\" /\u003e\n\n2. **Optional** : If you are using the default sign-in button graphic instead of\n providing your own sign-in button assets, you can customize the button's\n size with the [`setSize`](https://developers.google.com/android/reference/com/google/android/gms/common/SignInButton.html#setSize(int))\n method.\n\n ```scilab\n // Set the dimensions of the sign-in button.\n SignInButton signInButton = findViewById(R.id.sign_in_button);\n signInButton.setSize(SignInButton.SIZE_STANDARD);\n ```\n3. In the Android activity (for example, in the `onCreate` method), register\n your button's `OnClickListener` to sign in the user when clicked:\n\n findViewById(R.id.sign_in_button).setOnClickListener(this);\n\nStart the sign-in flow\n----------------------\n\n1.\n In the activity's `onClick` method, handle sign-in button taps by creating a\n sign-in intent with the [`getSignInIntent`](https://developers.google.com/android/reference/com/google/android/gms/auth/api/signin/GoogleSignInClient#getSignInIntent())\n method, and starting the intent with `startActivityForResult`.\n\n @Override\n public void onClick(View v) {\n switch (v.getId()) {\n case R.id.sign_in_button:\n signIn();\n break;\n // ...\n }\n }\n\n ```scdoc\n private void signIn() {\n Intent signInIntent = mGoogleSignInClient.getSignInIntent();\n startActivityForResult(signInIntent, RC_SIGN_IN);\n }\n ```\n\n Starting the intent prompts the user to select a Google Account to sign in\n with. If you requested scopes beyond `profile`, `email`, and `openid`, the\n user is also prompted to grant access to the requested resources.\n2. After the user signs in, you can get a [`GoogleSignInAccount`](https://developers.google.com/android/reference/com/google/android/gms/auth/api/signin/GoogleSignInAccount.html)\n object for the user in the activity's `onActivityResult` method.\n\n ```transact-sql\n @Override\n public void onActivityResult(int requestCode, int resultCode, Intent data) {\n super.onActivityResult(requestCode, resultCode, data);\n\n // Result returned from launching the Intent from GoogleSignInClient.getSignInIntent(...);\n if (requestCode == RC_SIGN_IN) {\n // The Task returned from this call is always completed, no need to attach\n // a listener.\n Task\u003cGoogleSignInAccount\u003e task = GoogleSignIn.getSignedInAccountFromIntent(data);\n handleSignInResult(task);\n }\n }\n ```\n\n The `GoogleSignInAccount` object contains information about the signed-in\n user, such as the user's name. \n\n ```css+lasso\n private void handleSignInResult(Task\u003cGoogleSignInAccount\u003e completedTask) {\n try {\n GoogleSignInAccount account = completedTask.getResult(ApiException.class);\n\n // Signed in successfully, show authenticated UI.\n updateUI(account);\n } catch (ApiException e) {\n // The ApiException status code indicates the detailed failure reason.\n // Please refer to the GoogleSignInStatusCodes class reference for more information.\n Log.w(TAG, \"signInResult:failed code=\" + e.getStatusCode());\n updateUI(null);\n }\n }\n ```\n\n You can also get the user's email address with [`getEmail`](https://developers.google.com/android/reference/com/google/android/gms/auth/api/signin/GoogleSignInAccount.html#getEmail()),\n the user's Google ID (for client-side use) with [`getId`](https://developers.google.com/android/reference/com/google/android/gms/auth/api/signin/GoogleSignInAccount.html#getId()),\n and an ID token for the user with [`getIdToken`](https://developers.google.com/android/reference/com/google/android/gms/auth/api/signin/GoogleSignInAccount.html#getIdToken()).\n If you need to pass the currently signed-in user to a backend server,\n [send the ID token to your backend server](https://developers.google.com/identity/sign-in/android/backend-auth)\n and validate the token on the server."]]