Home>Article>WeChat Applet> PHP version of WeChat store calling api sample code
The example in this article describes how to call the API in the PHP version of WeChat store. Share it with everyone for your reference, the details are as follows:
When you first start calling the WeChat store API, you may encounter problems. The system always prompts system error. In the final analysis, the parameters sent are incorrect.
A few calling examples are given below:
The examples are not complete.
AccessToken); $ResData = cUrlRequest($url,'{"status": '.$state.'}'); //特别注意这里,这个是json格式的。 echo ""; print_r( json_decode($ResData) ); } //获得所有分组 function getAllCategory($state = 0,$token) { $url = "https://api.weixin.qq.com/merchant/group/getall?access_token=".$token; $ResData = cUrlRequest($url,'{"status": '.$state.'}'); echo ""; print_r( json_decode($ResData) ); } //根据分组id来获得商品信息 function getProductByGroudid($state = 0,$token) { $url = "https://api.weixin.qq.com/merchant/group/getbyid?access_token=".$token; $ResData = cUrlRequest($url,'{"group_id": '.$state.'}'); echo ""; print_r( json_decode($ResData) ); } //获取accesstoken function getAccessToken() { $appid = "your appid"; $appsecret = "your appsecret"; $url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=".$appid."&secret=".$appsecret; $result = cUrlRequest($url); $jsoninfo = json_decode($result, true); $access_token = $jsoninfo["access_token"]; return $access_token; } //根据product_id来获取单个商品 function getOneProductByid($state = 0,$token) { $url="https://api.weixin.qq.com/merchant/get?access_token=".$token; $ResData = cUrlRequest($url,'{"product_id": "'.$state.'""}'); echo ""; print_r( json_decode($ResData) ); } $AccessToken=getAccessToken(); //gStateProduct(1,$AccessToken); //getAllCategory(1,$AccessToken); //getProductByGroudid(207061749,$AccessToken); getOneProductByid("pf82VwN45zr8eOlur5mAiSTjg8WU",$AccessToken);The above is the content of the API sample code for the PHP version of WeChat store. For more related content, please pay attention to the PHP Chinese website (m.sbmmt.com)!