पहला चरण, साइन-इन करने का ऐसा अनुभव लागू करना है जिससे उपयोगकर्ता अपने ईमेल पते या फ़ोन नंबर डाल सकें.
पुष्टि करने के लिए इस्तेमाल किए जा रहे सिस्टम से, उपयोगकर्ता का ईमेल पता या फ़ोन नंबर मिलना चाहिए. यहां दिए गए चरणों में, Firebase Authentication का इस्तेमाल करके साइन इन करने की जानकारी को सुरक्षित तरीके से इकट्ठा करने की प्रोसेस के बारे में बताया गया है. हालांकि, अगर आपके पास पहले से ही पुष्टि करने का कोई ऐसा सिस्टम है जो उपयोगकर्ता के ईमेल या फ़ोन नंबर इकट्ठा करता है, तो इस चरण को छोड़ा जा सकता है. इसके बाद, दूसरा चरण: Google Analytics को इंटिग्रेट करना पर जाएं.
पक्का करें कि आपने इस ट्यूटोरियल से जुड़ी ज़रूरी शर्तें पूरी कर ली हों
आपका ऐसा ऐप्लिकेशन जो iOS 12 या इसके बाद के वर्शन पर काम करता हो
आपका ऐप्लिकेशन, Firebase ऐप्लिकेशन के तौर पर रजिस्टर हो, जो Google Analytics और Ads से लिंक हो
आपका पसंदीदा आईडीई
पुष्टि करने का सिस्टम सेट अप करना
Firebase Authentication साइन इन करने का तरीका इस्तेमाल करना
Firebase Authentication का इस्तेमाल करके, उपयोगकर्ताओं को एक या एक से ज़्यादा तरीकों से आपके ऐप्लिकेशन में साइन इन करने की अनुमति दी जा सकती है. इन तरीकों में, ईमेल पता, फ़ोन नंबर, पासवर्ड से साइन इन करना, और फ़ेडरेटेड आइडेंटिटी प्रोवाइडर (जैसे, Google, Facebook या Twitter) शामिल हैं.
कृपया Firebase Authentication का इस्तेमाल शुरू करना लेख पढ़ें.
Firebase Authentication को पुष्टि करने के लिए बनाए गए कस्टम सिस्टम के साथ इंटिग्रेट करना
इसके अलावा, Firebase Authentication को कस्टम पुष्टि करने वाले सिस्टम के साथ इंटिग्रेट किया जा सकता है. इसके लिए, पुष्टि करने वाले सर्वर में बदलाव करके, उपयोगकर्ता के साइन इन करने पर कस्टम हस्ताक्षर वाले टोकन जनरेट किए जा सकते हैं. आपके ऐप्लिकेशन को यह टोकन मिलता है और वह Firebase से पुष्टि करने के लिए इसका इस्तेमाल करता है. कृपया पसंद के मुताबिक पुष्टि करने वाले सिस्टम का इस्तेमाल शुरू करना लेख पढ़ें.
पुष्टि किए गए उपयोगकर्ता का ईमेल पता या फ़ोन नंबर पाना
Firebase Authentication की मदद से पुष्टि करने का सिस्टम सेट अप करने के बाद, आपके पास
मौजूदा समय में साइन इन किए हुए उपयोगकर्ता की जानकारी पाने का विकल्प होता है.
मौजूदा उपयोगकर्ता की जानकारी पाने का सुझाया गया तरीका यह है कि आप Auth ऑब्जेक्ट पर एक लिसनर सेट करें:
Swift
handle=Auth.auth().addStateDidChangeListener{auth,userin// Get the user's email addressletemail=user.email// or get their phone numberletphoneNumber=user.phoneNumber// ...}
Objective-C
self.handle=[[FIRAuthauth]addAuthStateDidChangeListener:^(FIRAuth*_Nonnullauth,FIRUser*_Nullableuser){// Get the user's email addressNSString*email=user.email;// or get their phone numberNSString*phoneNumber=user.phoneNumber;// ...}];
Unity
Firebase.Auth.FirebaseAuthauth;Firebase.Auth.FirebaseUseruser;// Handle initialization of the necessary firebase modules:voidInitializeFirebase(){auth=Firebase.Auth.FirebaseAuth.DefaultInstance;auth.StateChanged+=AuthStateChanged;AuthStateChanged(this,null);}// Track state changes of the auth object.voidAuthStateChanged(objectsender,System.EventArgseventArgs){if(auth.CurrentUser!=user){boolsignedIn=user!=auth.CurrentUser&&auth.CurrentUser!=null;user=auth.CurrentUser;if(signedIn){// Get the user's email addressstringemail=user.Email;// or get their phone numberstringphoneNumber=user.PhoneNumber;// ...}}}// Handle removing subscription and reference to the Auth instance.// Automatically called by a Monobehaviour after Destroy is called on it.voidOnDestroy(){auth.StateChanged-=AuthStateChanged;auth=null;}
[[["समझने में आसान है","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-09-06 (UTC) को अपडेट किया गया."],[],[],null,["Step 1: Implement a sign-in experience\n\n\u003cbr /\u003e\n\n|----------------------------------------------------------------------------------------------------------------------------------|\n| Introduction: [Measure iOS Ads conversions](/docs/tutorials/ads-ios-on-device-measurement/index-first-party) |\n| **Step 1: Implement a sign-in experience** \u003cbr /\u003e |\n| Step 2: [Integrate Google Analytics](/docs/tutorials/ads-ios-on-device-measurement/step-2) |\n| Step 3: [Initiate on-device conversion measurement using Google Analytics](/docs/tutorials/ads-ios-on-device-measurement/step-3) |\n| Step 4: [Troubleshoot and handle common issues](/docs/tutorials/ads-ios-on-device-measurement/step-4) |\n\n\u003cbr /\u003e\n\nThe first step is to implement a sign-in experience to allow users to provide\ntheir email addresses or phone number.\n\n**The authentication system that you use must provide an email address or\nphone number associated with the user.** The following steps outline the process\nfor securely collecting sign-in information using Firebase Authentication, but you\ncan skip this step if you already have an authentication system that collects\nuser emails or phone numbers and continue to [Step 2: Integrate Google Analytics](/docs/tutorials/ads-ios-on-device-measurement/step-2).\n\n\u003cbr /\u003e\n\n**Make sure you have the prerequisites for this tutorial**\n\n\u003cbr /\u003e\n\n- Your own app that can run on iOS 12 or higher\n\n- Your app registered as a Firebase App that's linked to Google Analytics\n and Ads\n\n- Your preferred IDE\n\n \u003cbr /\u003e\n\n\u003cbr /\u003e\n\nSet up an authentication system\n\nUse a Firebase Authentication sign-in method\n\nYou can use Firebase Authentication to allow users to sign in to your app using one or\nmore sign-in methods, including email address, phone number, password sign-in,\nand federated identity providers (like Google, Facebook or Twitter).\nPlease review [Get started with Firebase Authentication](/docs/auth/ios/start).\n\nIntegrate Firebase Authentication with a custom authentication system\n\nAlternatively, you can integrate Firebase Authentication with a custom\nauthentication system by modifying your authentication server to produce custom\nsigned tokens when a user successfully signs in. Your app receives this token\nand uses it to authenticate with Firebase. Please review [Get started with a custom\nauthentication system](/docs/auth/ios/custom-auth).\n\nGet the authenticated user's email address or phone number\n\nAfter you've set up an authentication system with Firebase Authentication, you can\nget the currently signed-in user.\n\nThe recommended way to get the current user is by setting a listener on the\n`Auth` object: \n\nSwift \n\n```swift\nhandle = Auth.auth().addStateDidChangeListener { auth, user in\n // Get the user's email address\n let email = user.email\n // or get their phone number\n let phoneNumber = user.phoneNumber\n // ...\n}\n```\n\nObjective-C \n\n```objective-c\nself.handle = [[FIRAuth auth]\n addAuthStateDidChangeListener:^(FIRAuth *_Nonnull auth, FIRUser *_Nullable user) {\n // Get the user's email address\n NSString *email = user.email;\n // or get their phone number\n NSString *phoneNumber = user.phoneNumber;\n // ...\n }];\n```\n\nUnity \n\n```c#\nFirebase.Auth.FirebaseAuth auth;\nFirebase.Auth.FirebaseUser user;\n\n// Handle initialization of the necessary firebase modules:\nvoid InitializeFirebase() {\n auth = Firebase.Auth.FirebaseAuth.DefaultInstance;\n auth.StateChanged += AuthStateChanged;\n AuthStateChanged(this, null);\n}\n\n// Track state changes of the auth object.\nvoid AuthStateChanged(object sender, System.EventArgs eventArgs) {\n if (auth.CurrentUser != user) {\n bool signedIn = user != auth.CurrentUser && auth.CurrentUser != null;\n user = auth.CurrentUser;\n if (signedIn) {\n // Get the user's email address\n string email = user.Email;\n // or get their phone number\n string phoneNumber = user.PhoneNumber;\n // ...\n }\n }\n}\n\n// Handle removing subscription and reference to the Auth instance.\n// Automatically called by a Monobehaviour after Destroy is called on it.\nvoid OnDestroy() {\n auth.StateChanged -= AuthStateChanged;\n auth = null;\n}\n```\n| **Note:** Find more code examples demonstrating Firebase Authentication in the [Firebase quickstarts](https://github.com/firebase/quickstart-ios).\n\n\u003cbr /\u003e\n\n*** ** * ** ***\n\n\u003cbr /\u003e\n\n[arrow_back_ios**Introduction**](/docs/tutorials/ads-ios-on-device-measurement/index-first-party)\n[**Step 2** : Integrate Google Analyticsarrow_forward_ios](/docs/tutorials/ads-ios-on-device-measurement/step-2)\n\n\u003cbr /\u003e\n\n*** ** * ** ***"]]