官方商品-商品信息及购买的操作接口

1.获取商品类型
  1. 接口地址:goods/index/type-list
  2. 请求方式:GET
2.获取商品列表
  1. 接口地址:goods/index/index
  2. 请求方式:GET
  3. 返回参数
  4. PHP代码教程
  5. $curl = curl_init();
    $header = array(
      'Content-Type: application/json',
      'Version: 你要请求的接口版本号',
      'Authorization: Basic '.base64_encode('你的应用ID:你获取到的令牌'),
    );
    curl_setopt($curl, CURLOPT_URL, '请求路径');
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($curl, CURLOPT_POST, 1);
    curl_setopt($curl, CURLOPT_HTTPHEADER, $header);
    $response = curl_exec($curl);
    curl_close($curl);
    unset($curl);
    print_r($response);
3.获取商品详情
  1. 接口地址:goods/index/one
  2. 请求方式:POST
  3. 提交参数
  4. 返回参数
  5. PHP代码教程
  6. $curl = curl_init();
    $header = array(
      'Content-Type: application/json',
      'Version: 你要请求的接口版本号',
      'Authorization: Basic '.base64_encode('你的应用ID:你获取到的令牌'),
    );
    curl_setopt($curl, CURLOPT_URL, '请求路径');
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($curl, CURLOPT_POST, 1);
    curl_setopt($curl, CURLOPT_HTTPHEADER, $header);
    $response = curl_exec($curl);
    curl_close($curl);
    unset($curl);
    print_r($response);
4.购买商品
  1. 接口地址:goods/index/buy
  2. 请求方式:POST
  3. 提交参数
  4. 返回参数
  5. PHP代码教程
  6. $curl = curl_init();
    $header = array(
      'Content-Type: application/json',
      'Version: 你要请求的接口版本号',
      'Authorization: Basic '.base64_encode('你的应用ID:你获取到的令牌'),
    );
    curl_setopt($curl, CURLOPT_URL, '请求路径');
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($curl, CURLOPT_POST, 1);
    curl_setopt($curl, CURLOPT_HTTPHEADER, $header);
    $response = curl_exec($curl);
    curl_close($curl);
    unset($curl);
    print_r($response);
5.商品状态改变时,将商品信息推送至商家系统中
  1. 接口地址:商家填写的回调路径未配置?立即配置
  2. 请求方式:POST
  3. 提交参数
  4. PHP代码教程
  5. $curl = curl_init();
    $header = array(
      'Content-Type: application/json',
      'Version: 你要请求的接口版本号',
      'Authorization: Basic '.base64_encode('你的应用ID:你获取到的令牌'),
    );
    curl_setopt($curl, CURLOPT_URL, '请求路径');
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($curl, CURLOPT_POST, 1);
    curl_setopt($curl, CURLOPT_HTTPHEADER, $header);
    $response = curl_exec($curl);
    curl_close($curl);
    unset($curl);
    print_r($response);
6.商品库存改变时,将商品信息推送至商家系统中
  1. 接口地址:商家填写的回调路径未配置?立即配置
  2. 请求方式:POST
  3. 提交参数
  4. PHP代码教程
  5. $curl = curl_init();
    $header = array(
      'Content-Type: application/json',
      'Version: 你要请求的接口版本号',
      'Authorization: Basic '.base64_encode('你的应用ID:你获取到的令牌'),
    );
    curl_setopt($curl, CURLOPT_URL, '请求路径');
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($curl, CURLOPT_POST, 1);
    curl_setopt($curl, CURLOPT_HTTPHEADER, $header);
    $response = curl_exec($curl);
    curl_close($curl);
    unset($curl);
    print_r($response);
7.商品价格改变时,将商品信息推送至商家系统中
  1. 接口地址:商家填写的回调路径未配置?立即配置
  2. 请求方式:POST
  3. 提交参数
  4. PHP代码教程
  5. $curl = curl_init();
    $header = array(
      'Content-Type: application/json',
      'Version: 你要请求的接口版本号',
      'Authorization: Basic '.base64_encode('你的应用ID:你获取到的令牌'),
    );
    curl_setopt($curl, CURLOPT_URL, '请求路径');
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($curl, CURLOPT_POST, 1);
    curl_setopt($curl, CURLOPT_HTTPHEADER, $header);
    $response = curl_exec($curl);
    curl_close($curl);
    unset($curl);
    print_r($response);

请使用电脑端访问该页面