संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
Picker API की मदद से, उपयोगकर्ता अपनी Google Photos लाइब्रेरी से फ़ोटो और वीडियो चुनकर, उन्हें आपके ऐप्लिकेशन के साथ सुरक्षित तरीके से शेयर कर सकते हैं.
अपना ऐप्लिकेशन कॉन्फ़िगर करना: एपीआई को चालू करें और पुष्टि करने की सुविधा सेट अप करें. ज़्यादा जानकारी के लिए, अपने ऐप्लिकेशन को कॉन्फ़िगर करना लेख पढ़ें.
पिकर एपीआई फ़्लो
Picker API के काम करने के तरीके के बारे में खास जानकारी यहां दी गई है:
OAuth टोकन की जांच करना: पिकर एपीआई फ़्लो शुरू करने से पहले, उपयोगकर्ता के लिए मान्य OAuth 2.0 ऐक्सेस टोकन की जांच करें. अगर कोई टोकन नहीं है, तो टोकन पाने के लिए OAuth 2.0 ऑथराइज़ेशन फ़्लो शुरू करें.
सेशन बनाना:नया सेशन बनाने के लिए, Picker API को कॉल करके प्रोसेस शुरू करें. इस कॉल से एक यूनीक pickerUri मिलेगा.
उपयोगकर्ताओं को Google Photos ऐप्लिकेशन पर भेजना: अपने उपयोगकर्ताओं को pickerUri (क्लिक किए जा सकने वाले लिंक या क्यूआर कोड के तौर पर) दें. यह यूआरएल, उपयोगकर्ता के Google Photos ऐप्लिकेशन को सुरक्षित तरीके से खोलेगा.
उपयोगकर्ता मीडिया आइटम चुनता है: Google Photos ऐप्लिकेशन में, उपयोगकर्ता अपनी लाइब्रेरी ब्राउज़ कर सकते हैं और वे फ़ोटो और वीडियो चुन सकते हैं जिन्हें उन्हें आपके ऐप्लिकेशन के साथ शेयर करना है. उपयोगकर्ता के लिए मीडिया आइटम चुनने के अनुभव के बारे में खास जानकारी पढ़ें.
सेशन के लिए पोल: स्टेटस देखने के लिए, आपके ऐप्लिकेशन को समय-समय पर सेशन का पोल भरना चाहिए. आपको mediaItemsSet प्रॉपर्टी के लिए 'सही' वैल्यू चाहिए, ताकि यह पता चल सके कि उपयोगकर्ता ने अपना विकल्प चुना है.
चुने गए मीडिया आइटम की सूची बनाना:mediaItemsSet के सही होने पर, चुने गए मीडिया आइटम की जानकारी पाने के लिए, सूची बनाने के तरीके का इस्तेमाल किया जा सकता है.
मीडिया आइटम वापस पाना और उनका इस्तेमाल करना: अब आपके पास चुने गए मीडिया आइटम का ऐक्सेस है. baseUrl का इस्तेमाल करके, उनका कॉन्टेंट फ़ेच किया जा सकता है और उसे अपने ऐप्लिकेशन में इस्तेमाल किया जा सकता है.
[null,null,["आखिरी बार 2025-08-29 (UTC) को अपडेट किया गया."],[[["\u003cp\u003eThe Picker API lets users securely select photos and videos from their Google Photos library and share them with your application.\u003c/p\u003e\n"],["\u003cp\u003eBefore using the Picker API, ensure it's the right fit for your use case and properly configure your app with the necessary API and authentication setup.\u003c/p\u003e\n"],["\u003cp\u003eThe Picker API flow involves creating a session, directing users to the Google Photos app for selection, polling the session for completion, and then retrieving the selected media items.\u003c/p\u003e\n"],["\u003cp\u003eDevelopers should check the provided resources like reference documentation and samples for detailed information and implementation examples.\u003c/p\u003e\n"]]],["The Picker API enables users to share media from Google Photos with your app. First, check for and obtain an OAuth token. Then, create a new session via the Picker API, generating a `pickerUri`. Direct users to this URI to select media. Periodically poll the session until `mediaItemsSet` is true. Use the list method to retrieve details of selected items, and then access their content using `baseUrl` for use in your application.\n"],null,["# Get started with the Picker API\n\nThe Picker API provides a secure way for your users to select photos and videos\nfrom their Google Photos library and share them with your application.\n\nBefore you start\n----------------\n\n- **Check out the overview:** [Compare the Picker API and the Library API](/photos/overview/about) to make sure the Picker API is the right fit for your use case.\n- **Configure your app:** Enable the API and set up authentication. See [Configure your app](/photos/overview/configure-your-app) for detailed steps.\n\nThe Picker API flow\n-------------------\n\nHere is an overview of the how the Picker API works:\n\n1. **Check for OAuth token:** Before starting the Picker API flow, check for a\n valid OAuth 2.0 access token for the user. If there is no token, [initiate\n the OAuth 2.0 authorization flow](/identity/protocols/oauth2) to obtain one.\n\n2. **Create a session:** Initiate the process by making a call to the Picker\n API to [create a new\n session](/photos/picker/reference/rest/v1/sessions/create). This call will\n return a unique `pickerUri`.\n\n3. **Direct users to the Google Photos app:** Provide the [`pickerUri`](/photos/picker/reference/rest/v1/sessions#PickingSession.FIELDS.picker_uri)\n to your users (either as a clickable link or a QR code). This URL will\n securely open their Google Photos app.\n\n4. **User selects media items:** Within the Google Photos app, users can browse\n their library and select the photos and videos they want to share with your\n app. Read an overview of the [user's picking experience](/photos/picker/guides/picking-experience).\n\n5. **Poll the session:** Your app should periodically [poll the session](/photos/picker/reference/rest/v1/sessions/get)\n to check the status. You're looking for the\n [`mediaItemsSet`](/photos/picker/reference/rest/v1/sessions#PickingSession.FIELDS.media_items_set)\n property to return true, indicating the user has finished their selection.\n\n | **Note:** Every time you poll a session the response contains [recommended\n | intervals and\n | timeouts](/photos/picker/reference/rest/v1/sessions#PollingConfig) to configure your polling.\n6. **List selected media items:** Once `mediaItemsSet` returns true, you can\n use [the list method](/photos/picker/reference/rest/v1/mediaItems/list) to\n get details about the selected media items.\n\n7. **Retrieve and use media items:** Now you have access to the selected media\n items. You can [fetch their\n content](/photos/picker/guides/media-items#retrieve-picked-media-items)\n using the\n [`baseUrl`](/photos/picker/reference/rest/v1/mediaItems#MediaFile.FIELDS.base_url)\n and utilize them within your application.\n\nNext steps\n----------\n\n- Review the reference docs: Explore the detailed [Picker API reference\n documentation](/photos/picker/reference/rest) to learn about all the available methods and parameters.\n- Try out the samples: Check out our [sample](/photos/picker/samples) to see the Picker API in action and get inspiration for your integration."]]