一、填写授权回调页面的域名
在这里填的是 wx.alinq.org。在获得用户的授权后,会跳转到一个由开发人员指定的页面,该页面的链接必须在该域名下。如果没有填写的话,会出现一个页面链接无效的页面。
二、引导用户到指定的授权页面
例如:https://open.weixin.qq.com/connect/oauth2/authorize?appid=appid&redirect_uri=redirect_uri&response_type=code&scope=scope&state=state#wechat_redirect
关于参数的解释,具体可以参考微信相关的文档。值得注意的是 redirect_uri 是一个 url ,必须要对它进行 url 编码,在生成该 url 后,你可以到 http://cli.im/text/2014052714?4qbdc 来对把 url 生成一个二维码,然后在微信里扫一扫来进行测试。
扫一扫后:
三、最后奉上完整实现的代码
下面是完整的代码,希望对大家有用。^_^
<%@ webhandler language="c#" %>
public class userauth : ihttphandler
{
public void processrequest(httpcontext context)
{
var appid = "wxf1c24c60e3ac13b7";
var secret = "5902b9817acb7a290d4b7c2e6e97d4d3";
var code = context.request.querystring["code"];
if (string.isnullorempty(code))
{
var url = string.format("https://open.weixin.qq.com/connect/oauth2/authorize?appid={0}&redirect_uri=http%3a%2f%2fwx.alinq.org%2ftest%2fuserauth.ashx&response_type=code&scope=snsapi_userinfo&state=state#wechat_redirect", appid);
context.response.redirect(url);
}
else
{
var client = new system.net.webclient();
client.encoding = system.text.encoding.utf8;
var url = string.format("https://api.weixin.qq.com/sns/oauth2/access_token?appid={0}&secret={1}&code={2}&grant_type=authorization_code", appid, secret, code);
var data = client.downloadstring(url);
var serializer = new javascriptserializer();
var obj = serializer.deserialize<dictionary<string, string>>(data);
string accesstoken;
if (!obj.trygetvalue("access_token", out accesstoken))
return;
var opentid = obj["openid"];
url = string.format("https://api.weixin.qq.com/sns/userinfo?access_token={0}&openid={1}&lang=zh_cn", accesstoken, opentid);
data = client.downloadstring(url);
var userinfo = serializer.deserialize<dictionary<string, object>>(data);
foreach (var key in userinfo.keys)
{
context.response.write(string.format("{0}: {1}", key, userinfo[key]) + "<br/>");
}
}
}
}
更多微信开发——通过授权获取用户的基本信息。