Wechat接收消息API不发送XML?

时间:2015-08-19 23:55:08

标签: xml wechat

我不确定这是否是Wechat最终的问题,或者他们是否更改了他们的API。我们有一个正确响应WeChat端点验证的端点(回显echostr),并且每当收到新消息时我们也会收到POST消息。

问题是,当我们的帐户收到消息时,我们收到的POST消息中没有任何XML内容。它发送其他所有内容(签名,现时等),但没有消息XML。

我们做错了吗? API有变化吗?我们不是在正确地握手吗?

1 个答案:

答案 0 :(得分:1)

XML数据在原始HTTP请求正文中发送。

  

原始HTTP请求正文作为字节字符串。这很有用   以不同于传统HTML形式的方式处理数据:二进制   图像,XML有效负载等。

这是从微信发送到我的Django服务器的请求:

GET:<QueryDict: {u'nonce': [u'886****76'], u'timestamp': [u'1440041636'], u'signature': [u'29cb245a0f9399*******33956c3e96c500c56']}>, 
POST:<QueryDict: {}>,

request.POST为空,这意味着它不是传统的表单数据。

这就是我在Django上处理来自Wechat的POST消息的方法:使用request.read()。

@csrf_exempt
def weixin(request):
    logger.debug(request)
    token = #YOUR TOKEN
    if not validate(request.GET['signature'],request.GET['timestamp'],request.GET['nonce'],token):
        return Http404('')

    if request.method == 'GET':
        echo_str = request.GET['echostr']
        if echo_str != None:
            return HttpResponse(echo_str)
        else:
            return Http404('')

    elif request.method == 'POST':
        reply_str = reply(request.read())
        return HttpResponse(reply_str)

    return Http404('')


def validate(signature, timestamp, nonce, token):

    if signature == None or timestamp == None or nonce == None or token == None:
        return False

    seq = sorted([token, timestamp, nonce])
    logger.debug(seq)

    tmp_str = ''.join(seq)
    encode_str = hashlib.sha1(tmp_str).hexdigest()
    logger.debug(encode_str)

    if signature == encode_str:
        return True
    else:
        return False

我还没有验证的PHP代码。从$ GLOBALS [“HTTP_RAW_POST_DATA”]获取数据。

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($keyword == "?" || $keyword == "?")
            {
                $msgType = "text";
                $contentStr = date("Y-m-d H:i:s",time());
                $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr);
                echo $resultStr;
            }
        }else{
            echo "";
            exit;
        }
    }