接口地址:订单附加信息查询接口
开发文档:https://pay.weixin.qq.com/wiki/doc/api/external/declarecustom.php?chapter=18_2
请求参数:
<xml>
<appid>xxxxxx</appid>
<mch_id>xxxxxx</mch_id>
<sign>xxxxxxx</sign>
<out_trade_no>xxxxxxxxx</out_trade_no>
<customs>GUANGZHOU_ZS</customs>
</xml>
通过签名校验工具验证通过
接口返回结果:
<xml>
<return_code><![CDATA[FAIL]]></return_code>
<return_msg><![CDATA[签名验证失败]]></return_msg>
</xml>
签名工具只校验签名的方式是否正确,不校验参数的正确性。
加密前:appid=wx50xxxxx52a&customs=GUANGZHOU_ZS&mch_id=151xxx491&out_trade_no=201xxxx346&key=151xxxx491
实际请求入参:
<xml>
<appid>wx507xxxx352a</appid>
<mch_id>151xxxx491</mch_id>
<sign>2FCC3Bxxxxx803187D93105</sign>
<out_trade_no>2015xxxxx346</out_trade_no>
<customs>GUANGZHOU_ZS</customs>
</xml>