<?php
class Pdd{
public $syncAPIClient;
public $access_token='';
public $client_id = ''; // 你的client_id
public $client_secret = ''; // 你的client_secret
public $url = 'http://gw-api.pinduoduo.com/api/router';
//授权地址
public function getAPIClient($redirectUrl,$state='')
{
$url="http://mms.pinduoduo.com/open.html?response_type=code&client_id={$this->client_id}&redirect_uri={$redirectUrl}&state={$state}";
return $url;
}
/**
* post请求 请求ACCESS_TOKEN
* Enter description here ...
* @param unknown_type $url
* @param unknown_type $curlPost
*/
public function curl_post_json($url, $data)
{
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_TIMEOUT, 60); //设置超时
curl_setopt($ch, CURLOPT_POST, TRUE);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch,
php 拼多多 API 类
最新推荐文章于 2024-09-27 09:30:11 发布
本文详细介绍了如何使用PHP语言来封装拼多多的API接口,包括调用步骤、关键代码示例和注意事项,帮助开发者高效地进行拼多多平台的电商开发。
摘要由CSDN通过智能技术生成