Content API for Shopping के साथ काम करने की सुविधा

इस गाइड का इस्तेमाल करके, Merchant API को अपने मौजूदा Content API for Shopping के साथ इंटिग्रेट किया जा सकता है.

अपनी प्रोफ़ाइल बनाना शुरू करें

Merchant API और इसके सब-एपीआई के बारे में जानकारी के लिए, Merchant API का डिज़ाइन देखें.

Merchant API का इस्तेमाल शुरू करने के लिए, अपने अनुरोध के यूआरएल को इस फ़ॉर्मैट में बदलें:

https://merchantapi.googleapis.com/{sub-API}/{version}/{resource name}:{method}

ज़्यादा जानकारी के लिए, क्विकस्टार्ट गाइड और Merchant API का रेफ़रंस देखें.

gRPC सहायता

Merchant API, gRPC और REST के साथ काम करता है. Merchant API के लिए gRPC और Content API for Shopping के लिए REST का एक साथ इस्तेमाल किया जा सकता है.

Merchant API की क्लाइंट लाइब्रेरी के लिए, gRPC की ज़रूरत होती है.

ज़्यादा जानकारी के लिए, gRPC का इस्तेमाल करना देखें.

इनके साथ काम करता है

इस गाइड में, Merchant API के पूरे वर्शन में होने वाले सामान्य बदलावों के बारे में बताया गया है. कुछ खास सुविधाओं में हुए बदलावों के बारे में जानने के लिए, ये गाइड देखें:

Merchant API को Content API for Shopping के मौजूदा वर्शन 2.1 की सुविधाओं के साथ काम करने के लिए डिज़ाइन किया गया है.

उदाहरण के लिए, Merchant Inventories API का इस्तेमाल, Content API for Shopping के मौजूदा वर्शन 2.1 products के साथ किया जा सकता है. Content API for Shopping का इस्तेमाल करके, लोकल स्टोर में बेचे जाने वाले नए प्रॉडक्ट को अपलोड किया जा सकता है. इसके बाद, उस प्रॉडक्ट के लिए स्टोर में मौजूद जानकारी को मैनेज करने के लिए, Merchant Inventories API LocalInventory संसाधन का इस्तेमाल किया जा सकता है.

एक साथ कई अनुरोध करना

Merchant API, Content API for Shopping में दिखाए गए customBatch तरीके के साथ काम नहीं करता. इसके बजाय, एक साथ कई अनुरोध भेजें लेख पढ़ें या कॉल को अलग-अलग समय पर चलाएं.

नीचे दिए गए सैंपल में, प्रॉडक्ट इनपुट डालने का तरीका बताया गया है.

Java

  public static void asyncInsertProductInput(Config config, String dataSource) throws Exception {

    // Obtains OAuth token based on the user's configuration.
    GoogleCredentials credential = new Authenticator().authenticate();

    // Creates service settings using the credentials retrieved above.
    ProductInputsServiceSettings productInputsServiceSettings =
        ProductInputsServiceSettings.newBuilder()
            .setCredentialsProvider(FixedCredentialsProvider.create(credential))
            .build();

    // Creates parent to identify where to insert the product.
    String parent = getParent(config.getAccountId().toString());

    // Calls the API and catches and prints any network failures/errors.
    try (ProductInputsServiceClient productInputsServiceClient =
        ProductInputsServiceClient.create(productInputsServiceSettings)) {

      // Creates five insert product input requests with random product IDs.
      List<InsertProductInputRequest> requests = new ArrayList<>(5);
      for (int i = 0; i < 5; i++) {
        InsertProductInputRequest request =
            InsertProductInputRequest.newBuilder()
                .setParent(parent)
                // You can only insert products into datasource types of Input "API" and "FILE", and
                // of Type "Primary" or "Supplemental."
                // This field takes the `name` field of the datasource.
                .setDataSource(dataSource)
                // If this product is already owned by another datasource, when re-inserting, the
                // new datasource will take ownership of the product.
                .setProductInput(createRandomProduct())
                .build();

        requests.add(request);
      }

      System.out.println("Sending insert product input requests");
      List<ApiFuture<ProductInput>> futures =
          requests.stream()
              .map(
                  request ->
                      productInputsServiceClient.insertProductInputCallable().futureCall(request))
              .collect(Collectors.toList());

      // Creates callback to handle the responses when all are ready.
      ApiFuture<List<ProductInput>> responses = ApiFutures.allAsList(futures);
      ApiFutures.addCallback(
          responses,
          new ApiFutureCallback<List<ProductInput>>() {
            @Override
            public void onSuccess(List<ProductInput> results) {
              System.out.println("Inserted products below");
              System.out.println(results);
            }

            @Override
            public void onFailure(Throwable throwable) {
              System.out.println(throwable);
            }
          },
          MoreExecutors.directExecutor());

    } catch (Exception e) {
      System.out.println(e);
    }
  }

अगर Content API में customBatch का इस्तेमाल किया जाता है और आपको Merchant API के लिए इस सुविधा की ज़रूरत है, तो हमें अपने सुझाव/राय/शिकायत/राय में इसकी वजह बताएं.

आइडेंटिफ़ायर

Google के एपीआई को बेहतर बनाने के सिद्धांतों के मुताबिक, हमने Merchant API के संसाधनों के आइडेंटिफ़ायर में कुछ बदलाव किए हैं.

नाम, आईडी की जगह ले लेता है

Merchant API के सभी संसाधन, अपने यूनीक आइडेंटिफ़ायर के तौर पर name फ़ील्ड का इस्तेमाल करते हैं.

अपने कॉल में name फ़ील्ड का इस्तेमाल करने का उदाहरण यहां दिया गया है:

POST https://merchantapi.googleapis.com/inventories/v1beta/{parent}/regionalInventories:insert

Merchant API में, पढ़ने और लिखने के सभी कॉल के लिए, यह नया name फ़ील्ड, संसाधन आइडेंटिफ़ायर के तौर पर दिखाया जाता है.

उदाहरण के लिए, किसी संसाधन से name को वापस पाने के लिए getName() तरीका लागू करें. साथ ही, व्यापारी/कंपनी और संसाधन आईडी से name को खुद बनाने के बजाय, आउटपुट को वैरिएबल के तौर पर सेव करें.

चाइल्ड रिसॉर्स के लिए पैरंट फ़ील्ड

Merchant API में, सभी चाइल्ड रिसॉर्स में parent फ़ील्ड होता है. पूरे पैरंट रिसॉर्स को पास करने के बजाय, parent फ़ील्ड का इस्तेमाल करके, रिसॉर्स के name की जानकारी दी जा सकती है, ताकि उसमें चाइल्ड रिसॉर्स डाला जा सके. उस parent के चाइल्ड रिसॉर्स की सूची बनाने के लिए, list तरीकों के साथ parent फ़ील्ड का भी इस्तेमाल किया जा सकता है.

उदाहरण के लिए, किसी प्रॉडक्ट की स्थानीय इन्वेंट्री की सूची बनाने के लिए, list के तरीके के लिए, parent फ़ील्ड में प्रॉडक्ट का name डालें. इस मामले में, दिया गया product, दिखाए गए LocalInventory संसाधनों में से parent है.

टाइप

यहां Merchant API के सब-एपीआई में शेयर किए जाने वाले कुछ सामान्य टाइप दिए गए हैं.

कीमत

Merchant Common पैकेज में Price के लिए ये बदलाव किए गए हैं:

Content API Merchant API
रकम वाला फ़ील्ड value:string amountMicros:int64
मुद्रा फ़ील्ड currency:string currencyCode:string

Price की रकम अब माइक्रो में रिकॉर्ड की जाती है. यहां 10 लाख माइक्रो, आपकी मुद्रा की स्टैंडर्ड यूनिट के बराबर होते हैं.

Content API for Shopping में, Price एक दशमलव संख्या थी, जो स्ट्रिंग के तौर पर थी.

रकम वाले फ़ील्ड का नाम value से बदलकर amountMicros हो गया है

मुद्रा फ़ील्ड का नाम currency से बदलकर currencyCode हो गया है. फ़ॉर्मैट ISO 4217 बना रहेगा.