时间:2019-05-05 来源:小程序工厂
Y***:
//微信小程序调用wx.login获取的code
string code = "xxxxx";
//微信小程序唯一标识(开发者持有的appid)
string appid = "xxxxxxx";
//微信小程序的 app secret(开发者持有的app secret)
string secret = "xxxxxxxxxxxxxxx";
//发送Http Get请求
string url = string.Format("https://api.weixin.qq.com/sns/jscode2session?appid={0}&secret={1}&js_code={2}&grant_type=authorization_code", appid, secret, code);
==========================发送请求代码。略。=====================================
///
/// 返回结果实体:微信Api返回参数
///
public class WxApiResult
{
///
/// 用户唯一标识
///
public string openid { get; set; }
///
/// 会话密钥
///
public string session_key { get; set; }
///
/// 用户在开放平台的唯一标识符
///
public string unionid { get; set; }
///
/// 错误状态码
///
public string errcode { get; set; }
///
/// 错误信息
///
public string errmsg { get; set; }
}