文件名称:ASP微信开发者接入代码
文件大小:5KB
文件格式:ASP
更新时间:2016-12-17 08:58:12
asp 代码 微信
<%@Language="VBScript" CodePage="65001"%> <% '********************************************** '注意事项 'ASP文件需要以UTF-8的格式保存,否则乱码. '以下两行代码是为了通过微信接口验证的。 'response.write request("echostr") 'response.end '********************************************** dim signature '微信加密签名 dim timestamp '时间戳 dim nonce '随机数 'dim echostr '随机字符串 dim Token dim signaturetmp token="ggzhaohx640322"'您在后台添写的 token signature = Request("signature") nonce = Request("nonce") timestamp = Request("timestamp") '********************************************** dim ToUserName '开发者微信号 dim FromUserName'发送方帐号(一个OpenID) dim CreateTime '消息创建时间(整型) dim MsgType 'text dim Content '文本消息内容