请填写接口配置信息,此信息需要你拥有自己的服务器资源.,微信测试号使用笔记:接口配置信息验证...

一、前提条件,要有一台服务器

请填写接口配置信息,此信息需要你有自己的服务器资源,填写的URL需要正确响应微信发送的Token验证,请阅读消息接口使用指南。

二、C#代码示例

但是上面链接中的代码是PHP示例代码,因此我整理了一份C#版的,亲测能用。

using System;

using System.Collections.Generic;

using System.Linq;

using System.Security.Cryptography;

using System.Text;

using System.Web;

using System.Web.Security;

using System.Web.UI;

using System.Web.UI.WebControls;

namespace WXtoken

{

public partial class index : System.Web.UI.Page

{

protected void Page_Load(object sender, EventArgs e)

{

//验证token

string poststring = string.Empty;

string token = "aabbcc"; //验证token,随意填写

if (string.IsNullOrEmpty(token))

{

return;

}

string echostr = HttpContext.

你可能感兴趣的:(请填写接口配置信息)