您的位置:首页 > 移动开发 > 微信开发

微信公众平台开发(72)第三方接口

2013-12-22 11:27 141 查看
微信公众平台开发 第三方接口
作者:方倍工作室
地址:http://www.cnblogs.com/txw1958/p/weixin72-third-party-api.html

测试代码

<?php
/*
方倍工作室 第三方接口 测试代码
*/

$post = "<xml><ToUserName><![CDATA[gh_204936aea56d]]></ToUserName>
<FromUserName><![CDATA[oc7tbuPEJdWm7jLJqRPCDNoWq480]]></FromUserName>
<CreateTime>1383811836</CreateTime>
<MsgType><![CDATA[text]]></MsgType>
<Content><![CDATA[深圳天气]]></Content>
<MsgId>5943426579437733541</MsgId>
</xml>";

$url = "http://www.abc.com/weixin/";
$headers = array("Content-Type: text/xml; charset=utf-8");
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
$output = curl_exec($ch);
curl_close($ch);
echo $output;

?>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: