校验签名是否合法
URL地址:api/Auth?signature={signature}×tamp={timestamp}&nonce={nonce}&appid={appid}
请求方式:POST
传递参数
名 称 | 描 述 | 参数类型 | 附加信息 |
---|---|---|---|
signature |
加密签名内容 |
string |
Required |
timestamp |
时间戳 |
string |
Required |
nonce |
随机字符串 |
string |
Required |
appid |
应用接入Id |
string |
Required |
传递对象
None.
返回对象
CheckResultOfObject ()名 称 | 描 述 | 参数类型 | 附加信息 |
---|---|---|---|
Success | boolean |
None. |
|
Message | string |
None. |
|
Result | Object |
None. |
返回对象格式
application/json, text/json
Sample:
{ "Success": true, "Message": "sample string 2", "Result": {} }
application/xml, text/xml
Sample:
<CheckResultOfanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WeChat.Api.Models"> <Message>sample string 2</Message> <Result /> <Success>true</Success> </CheckResultOfanyType>