codeigniter flipkart产品api

时间:2017-11-07 11:59:31

标签: php codeigniter flipkart-api

我正在尝试使用codeigniter中的flipkart产品Feed api获得最高价。

这是我为实现它而编写的代码。

public function getTopDealsFlipkart()
{
    $data = array();
    $data['url'] = 'https://affiliate-api.flipkart.net/affiliate/1.0/feeds/'.FK_AFFILIATE_ID.'/category/mens-clothing.json?expiresAt=1510123592000&sig=<urlValidationSignature>&inStock=true';
    $header['Accept'] = 'application/json';
    $header['Fk-Affiliate-Token'] = FK_AFFILIATE_TOKEN;
    $header['Fk-Affiliate-Id'] = FK_AFFILIATE_ID;
    $data['header'] = $header;
    $output = $this->get_response($data);
    return $output;
}

public function get_response($data)
{
    $output = null;
    try {
        $client = new GuzzleHttp\Client();
        $response = $client->request('GET', $data['url'], [
            'headers' => $data['header']
        ]);
        $output = $response->getBody();
    } catch (Exception $e) {
        log_message('debug', 'fail to get response ');
    }
    return $output;
}

它返回的输出为null。

我无法理解什么是&#39; sig&#39;因为API只是将其定义为&#34; url验证签名&#34;。没有关于API的更多信息。什么是URL验证签名?如何生成URL验证签名?

0 个答案:

没有答案