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.
|
- <?php
- /*
- Author:XM
- Compeny:Spiders Travel
- */
- //获取自动回复接口
- require_once '../Common/Config.php';
- require_once '../Common/Function.php';
- $access_token=getAccesstoken();
- $url = "https://api.weixin.qq.com/cgi-bin/get_current_autoreply_info?access_token=".$access_token;
- $result = http_request($url);
- echo $result;
|