使用flipkart api获取特定单个产品的价格,标题和其他详细信息

Pra*_*oni 5 php mysql api base64 json

我正在使用clusterdev.flipkart-api,从这个API我有flipkart目录名称和链接然后点击它我得到目录的可用产品.但我需要从这个API获取特定产品的价格,标题,inStock详细信息.我试图做一些改变,但我没有更多的知识在json,所以我无法得到细节.在获得特定产品的价格,标题,inStock详细信息后,我需要将其更新到我的数据库中.

Flipkart Api常见问题链接:http://www.flipkart.com/affiliate/apifaq

请告诉我我需要做些什么改变来获得产品的价格,头衔,instock和其他细节.

实际代码:https://github.com/xaneem/flipkart-api-php 包含的文件:https://github.com/xaneem/flipkart-api-php/blob/master/clusterdev.flipkart-api.php

代码在这里

<?php

//Include the class.
include "clusterdev.flipkart-api.php";

//Replace <affiliate-id> and <access-token> with the correct values
$flipkart = new \clusterdev\Flipkart("pratikson3", "853d3bc027514b3aa33f1caa4f30f1cf", "json");


//To view category pages, API URL is passed as query string.
$url = isset($_GET['url'])?$_GET['url']:false;
if($url){
//URL is base64 encoded to prevent errors in some server setups.
$url = base64_decode($url);

//This parameter lets users allow out-of-stock items to be displayed.
$hidden = isset($_GET['hidden'])?false:true;

//Call the API using the URL.
$details = $flipkart->call_url($url);

if(!$details){
    echo 'Error: Could not retrieve products list.';
    exit();
}

//The response is expected to be JSON. Decode it into associative arrays.
$details = json_decode($details, TRUE);

//The response is expected to contain these values.
$nextUrl = $details['nextUrl'];
$validTill = $details['validTill'];
$products = $details['productInfoList'];

//Products table
echo "<table border=2 cellpadding=10 cellspacing=1 style='text-align:center'>";
$count = 0;
$end = 1;

//Make sure there are products in the list.
if(count($products) > 0){
    foreach ($products as $product) {

        //Hide out-of-stock items unless requested.
        $inStock = $product['productBaseInfo']['productAttributes']['inStock'];
        if(!$inStock && $hidden)
            continue;

        //Keep count.
        $count++;

        //The API returns these values nested inside the array.
        //Only image, price, url and title are used in this demo
        $productId = $product['productBaseInfo']['productIdentifier']['productId'];
        $title = $product['productBaseInfo']['productAttributes']['title'];
        $productDescription = $product['productBaseInfo']['productAttributes']['productDescription'];

        //We take the 200x200 image, there are other sizes too.
        $productImage = array_key_exists('200x200', $product['productBaseInfo']['productAttributes']['imageUrls'])?$product['productBaseInfo']['productAttributes']['imageUrls']['200x200']:'';
        $sellingPrice = $product['productBaseInfo']['productAttributes']['sellingPrice']['amount'];
        $productUrl = $product['productBaseInfo']['productAttributes']['productUrl'];
        $productBrand = $product['productBaseInfo']['productAttributes']['productBrand'];
        $color = $product['productBaseInfo']['productAttributes']['color'];
        $productUrl = $product['productBaseInfo']['productAttributes']['productUrl'];

        //Setting up the table rows/columns for a 3x3 view.
        $end = 0;
        if($count%3==1)
            echo '<tr><td>';
        else if($count%3==2)
            echo '</td><td>';
        else{
            echo '</td><td>';
            $end =1;
        }

        echo '<a target="_blank" href="'.$productUrl.'"><img src="'.$productImage.'"/><br>'.$title."</a><br>Rs. ".$sellingPrice;

        if($end)
            echo '</td></tr>';

    }
}

//A message if no products are printed. 
if($count==0){
    echo '<tr><td>The retrieved products are not in stock. Try the Next button or another category.</td><tr>';
}

//A hack to make sure the tags are closed.  
if($end!=1)
    echo '</td></tr>';

echo '</table>';

//Next URL link at the bottom.
echo '<h2><a href="?url='.base64_encode($nextUrl).'">NEXT >></a></h2>';

//That's all we need for the category view.
exit();
}



//Category Selection Page
//If the control reaches here, the API directory view is shown.

//Query the API
$home = $flipkart->api_home();

//Make sure there is a response.
if($home==false){
    echo 'Error: Could not retrieve API homepage';
    exit();
}

//Convert into associative arrays.
$home = json_decode($home, TRUE);

$list = $home['apiGroups']['affiliate']['apiListings'];

//Create the tabulated view for different categories.
echo '<table border=2 style="text-align:center;">';
$count = 0;
$end = 1;
foreach ($list as $key => $data) {
    $count++;
    $end = 0;

    //To build a 3x3 table.
    if($count%3==1)
        echo '<tr><td>';
    else if($count%3==2)
        echo '</td><td>';
else{
    echo '</td><td>';
    $end =1;
}

echo "<strong>".$key."</strong>";
echo "<br>";
//URL is base64 encoded when sent in query string.
echo '<a href="?url='.base64_encode($data['availableVariants']['v0.1.0']['get']).'">View Products &raquo;</a>';
}

if($end!=1)
    echo '</td></tr>';
echo '</table>';

//This was just a rough example created in limited time.
//Good luck with the API.
Run Code Online (Sandbox Code Playgroud)

小智 6

<?php

    //Include the class.

    include "clusterdev.flipkart-api.php";

    //Replace <affiliate-id> and <access-token> with the correct values

    $flipkart = new \clusterdev\Flipkart("pratikson3", "853d3bc027514b3aa33f1caa4f30f1cf", "json");

    $pid = "Flipkart Product ID";

    $url = 'https://affiliate-api.flipkart.net/affiliate/product/json?id=' .$pid;

    //Call the API using the URL.

    $details = $flipkart->call_url($url);

    if(!$details){

        echo 'Error: Could not retrieve products list.';

        exit();
    }

    //The response is expected to be JSON. Decode it into associative arrays.

    $details = json_decode($details, TRUE);

    $price = $details['productBaseInfo']['productAttributes']['sellingPrice']['amount'];

    $inStock = (int) $details['productBaseInfo']['productAttributes']['inStock'];

    $title = $details['productBaseInfo']['productAttributes']['title'];

    $description = $details['productBaseInfo']['productAttributes']['productDescription'];
Run Code Online (Sandbox Code Playgroud)

  • 谢谢@StackUser,它的工作正常. (2认同)