经过大量的研究和实践后,我一直试图获得所有当前有效产品的列表,我设法整理了一个脚本,该脚本将列出我需要的可用库存和 sku 的信息。现在我遇到的问题是我必须从网站手动输入 ebay id,但是我需要的是自动拉出事件 ebay 列表的列表。

这是收集单个产品信息的脚本。

error_reporting(E_ALL);
    ini_set('display_errors', '1');

    // Load configuration file
    $sandbox = false;
    $compat_level = 753;
    $api_endpoint = $sandbox ? 'https://api.sandbox.ebay.com/ws/api.dll' : 'https://api.ebay.com/ws/api.dll';
    $dev_id = $sandbox ? " " : " ";
    $app_id = $sandbox ? " " : " ";
    $cert_id = $sandbox ? " " : " ";
    $auth_token = $sandbox ? " " : " ";


    $site_id = 3;
    $call_name = 'GetItem';

    // Create headers to send with CURL request.
    $headers = array
    (
        'X-EBAY-API-COMPATIBILITY-LEVEL: ' . $compat_level,
        'X-EBAY-API-DEV-NAME: ' . $dev_id,
        'X-EBAY-API-APP-NAME: ' . $app_id,
        'X-EBAY-API-CERT-NAME: ' . $cert_id,
        'X-EBAY-API-CALL-NAME: ' . $call_name,
        'X-EBAY-API-SITEID: ' . $site_id,
    );

    // Generate XML request
    $xml_request = "<?xml version=\"1.0\" encoding=\"utf-8\" ?>
                   <".$call_name."Request xmlns=\"urn:ebay:apis:eBLBaseComponents\">
                       <RequesterCredentials>
                           <eBayAuthToken>" . $auth_token . "</eBayAuthToken>
                       </RequesterCredentials>
                       <DetailLevel>ReturnAll</DetailLevel>
                       <IncludeItemSpecifics>true</IncludeItemSpecifics>
                       <IncludeWatchCount>true</IncludeWatchCount>
                       <ItemID>191744777908</ItemID>
                   </".$call_name."Request>";

    // Send request to eBay and load response in $response
    $connection = curl_init();
    curl_setopt($connection, CURLOPT_URL, $api_endpoint);
    curl_setopt($connection, CURLOPT_SSL_VERIFYPEER, 0);
    curl_setopt($connection, CURLOPT_SSL_VERIFYHOST, 0);
    curl_setopt($connection, CURLOPT_HTTPHEADER, $headers);
    curl_setopt($connection, CURLOPT_POST, 1);
    curl_setopt($connection, CURLOPT_POSTFIELDS, $xml_request);
    curl_setopt($connection, CURLOPT_RETURNTRANSFER, 1);
    $response = curl_exec($connection);
    curl_close($connection);

    // Create DOM object and load eBay response
    $dom = new DOMDocument();
    $dom->loadXML($response);

    // Parse data accordingly.
    $ack = $dom->getElementsByTagName('Ack')->length > 0 ? $dom->getElementsByTagName('Ack')->item(0)->nodeValue : '';
    $eBay_official_time = $dom->getElementsByTagName('Timestamp')->length > 0 ? $dom->getElementsByTagName('Timestamp')->item(0)->nodeValue : '';
    //$current_price = $dom->getElementsByTagName('ConvertedCurrentPrice')->length > 0 ? $dom->getElementsByTagName('ConvertedCurrentPrice')->item(0)->nodeValue : '';
    //$description = $dom->getElementsByTagName('Description')->length > 0 ? $dom->getElementsByTagName('Description')->item(0)->nodeValue : '';
    $itemID = $dom->getElementsByTagName('ItemID')->length > 0 ? $dom->getElementsByTagName('ItemID')->item(0)->nodeValue : '';
    $customLabel = $dom->getElementsByTagName('SKU')->length > 0 ? $dom->getElementsByTagName('SKU')->item(0)->nodeValue : '';
    $quantity = $dom->getElementsByTagName('Quantity')->length > 0 ? $dom->getElementsByTagName('Quantity')->item(0)->nodeValue : '';
    $quantitySold = $dom->getElementsByTagName('QuantitySold')->length > 0 ? $dom->getElementsByTagName('QuantitySold')->item(0)->nodeValue : '';
    $quantityAvaliable = $quantity  - $quantitySold;

    echo "ItemID: ".$itemID."<br>";
    echo "sku: ".$customLabel."<br>";
    echo "quantity: ".$quantity."quantitySold: ".$quantitySold." quantityAvaliable:".$quantityAvaliable;

我无法理解的是如何自动从我的 eBay 商店中获取列表。而不必单独输入每个项目 ID。

最佳答案

这可用于获取您在 eBay 上的所有事件列表。解释这基本上是以 xml 的形式向 eBay 发出请求。 xml 请求将告诉 eBay 您的目标是什么,然后 eBay 会以适当的信息响应您的 eBay 帐户上的事件列表。您的 xml 响应存储在 var $response 中。

error_reporting(E_ALL);
            ini_set('display_errors', '1');

            // Load configuration file
            $sandbox = false;
            $compat_level = 753;
            $api_endpoint = $sandbox ? 'https://api.sandbox.ebay.com/ws/api.dll' : 'https://api.ebay.com/ws/api.dll';
            $dev_id = $sandbox ? "" : "";
            $app_id = $sandbox ? "" : "";
            $cert_id = $sandbox ? "" : "";
            $auth_token = $sandbox ? "" : "";


            $site_id = 3;

/**
**Change your call name to the appropriate call you need to make so for example to get list of all active products on your ebay you can use GetMyEbaySelling
**
**/

            $call_name = 'GetMyeBaySelling';

            // Create headers to send with CURL request.
            $headers = array
            (
                'X-EBAY-API-COMPATIBILITY-LEVEL: ' . $compat_level,
                'X-EBAY-API-DEV-NAME: ' . $dev_id,
                'X-EBAY-API-APP-NAME: ' . $app_id,
                'X-EBAY-API-CERT-NAME: ' . $cert_id,
                'X-EBAY-API-CALL-NAME: ' . $call_name,
                'X-EBAY-API-SITEID: ' . $site_id,
            );

/**
**XML request is what your telling ebay you need so this is the basic request to get hold of the active listings
**just to note the listings would be in a var called response.
**/

                $xml_request = "<?xml version=\"1.0\" encoding=\"utf-8\"?>
                            <GetMyeBaySellingRequest xmlns=\"urn:ebay:apis:eBLBaseComponents\">
                            <RequesterCredentials>
                            <eBayAuthToken>". $auth_token . "</eBayAuthToken>
                            </RequesterCredentials>
                            <Version>753</Version>
                            <ActiveList>
                            <Sort>TimeLeft</Sort>
                            <Pagination>
                            <EntriesPerPage>100</EntriesPerPage>
                            <PageNumber>1</PageNumber>
                            </Pagination>
                            </ActiveList>
                            </GetMyeBaySellingRequest>";

            // Send request to eBay and load response in $response
            $connection = curl_init();
            curl_setopt($connection, CURLOPT_URL, $api_endpoint);
            curl_setopt($connection, CURLOPT_SSL_VERIFYPEER, 0);
            curl_setopt($connection, CURLOPT_SSL_VERIFYHOST, 0);
            curl_setopt($connection, CURLOPT_HTTPHEADER, $headers);
            curl_setopt($connection, CURLOPT_POST, 1);
            curl_setopt($connection, CURLOPT_POSTFIELDS, $xml_request);
            curl_setopt($connection, CURLOPT_RETURNTRANSFER, 1);
            $response = curl_exec($connection);
            curl_close($connection);

解释在这里
http://developer.ebay.com/DevZone/XML/docs/Reference/eBay/GetMyeBaySelling.html

关于php - Ebay 开发人员改进,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35059340/

10-12 15:42