微信php接口
① 微信php SDK进行了更新,更新代码如何使用。
一、写好接口程序
在你的服务器上上传好一个接口程序文件 内容如下:
<?php
define("TOKEN", "weixin");//自己定义的token 就是个通信的私钥
$wechatObj = new wechatCallbackapiTest();
$wechatObj->valid();
//$wechatObj->responseMsg();
class wechatCallbackapiTest
{
public function valid()
{
$echoStr = $_GET["echostr"];
if($this->checkSignature()){
echo $echoStr;
exit;
}
}
public function responseMsg()
{
$postStr = $GLOBALS["HTTP_RAW_POST_DATA"];
if (!empty($postStr)){
$postObj = simplexml_load_string($postStr, 'SimpleXMLElement', LIBXML_NOCDATA);
$fromUsername = $postObj->FromUserName;
$toUsername = $postObj->ToUserName;
$keyword = trim($postObj->Content);
$time = time();
$textTpl = "<xml>
<ToUserName><![CDATA[%s]]></ToUserName>
<FromUserName><![CDATA[%s]]></FromUserName>
<CreateTime>%s</CreateTime>
<MsgType><![CDATA[%s]]></MsgType>
<Content><![CDATA[%s]]></Content>
<FuncFlag>0<FuncFlag>
</xml>";
if(!empty( $keyword ))
{
$msgType = "text";
$contentStr = '你好啊.;
$resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr);
echo $resultStr;
}else{
echo '说说话吧';
}
}else {
echo '说说话吧';
exit;
}
}
private function checkSignature()
{
$signature = $_GET["signature"];
$timestamp = $_GET["timestamp"];
$nonce = $_GET["nonce"];
$token =TOKEN;
$tmpArr = array($token, $timestamp, $nonce);
sort($tmpArr);
$tmpStr = implode( $tmpArr );
$tmpStr = sha1( $tmpStr );
if( $tmpStr == $signature ){
② php 调用微信接口频繁,怎么限制让他发送10条消息1秒钟之后再发送
正常接口返回格式是{code:0,msg:'',data:{}},接口限制的时候可以返回{code:1001,msg:'请一秒钟后重试.',data:{}}
你可以记录一个cahce值,内容就存用户这次访问本接口的时间戳,和发送次数;每次请求进来的时候,取用户cache,比对发送次数,如果不到10次,提示msg,然后ajax接收到code=1001的返回值就搁置按钮1秒钟.
③ 微信小程序,后端用php写完接口,怎么把数据给前端,要带什么参数
1、首先在 index.js中想写逻辑代码。