You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

12 line
380 B

  1. <?php
  2. //不加参数
  3. require_once '../Common/Config.php';
  4. require_once '../Common/Function.php';
  5. header("Content-type:text/html;charset=utf-8");
  6. $access_token=getAccesstoken();
  7. $url = "https://api.weixin.qq.com/cgi-bin/material/batchget_material?access_token=".$access_token;
  8. $data='{"type":"news","offset":0,"count":20}';
  9. $result = http_request($url, $data);
  10. var_dump($result);