gpt4 book ai didi

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

转载 作者:可可西里 更新时间:2023-11-01 07:04:18 27 4
gpt4 key购买 nike

我正在使用 clusterdev.flipkart-api,从这个 api 中我得到了 flipkart 目录名称和链接,然后单击它我得到了目录的可用产品。但我需要从这个 api 获取特定产品的价格、标题、库存详细信息。我曾尝试进行一些更改,但我对 json 没有更多的了解,所以我无法获得详细信息。在获得特定产品的价格、名称、库存详细信息后,我需要将其更新到我的数据库中。

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

请建议我需要进行哪些更改才能获得产品的价格、标题、库存和其他详细信息。

实际代码: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.

最佳答案

<?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'];

关于php - 使用 flipkart api 获取特定单个产品的价格、标题和其他详细信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30691311/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com