|
@@ -51,12 +51,9 @@ namespace MySystem.Areas.Api.Controllers.v1
|
|
|
string iv = data["iv"].ToString(); //微信小程序获取手机号的IV
|
|
|
Dictionary<string, object> Obj = new Dictionary<string, object>();
|
|
|
// PublicAccountSet set = RedisDbconn.Instance.Get<PublicAccountSet>("PublicAccountSet") ?? new PublicAccountSet();
|
|
|
- PublicAccountSet set = new PublicAccountSet()
|
|
|
- {
|
|
|
- WeChatMiniAppId = "wx5417e0770bb19c4e",
|
|
|
- WeChatMiniAppSecret = "b853caabd367e1f3fd729c259ac8bee6",
|
|
|
- };
|
|
|
- string result = function.GetWebRequest("https://api.weixin.qq.com/sns/jscode2session?appid=" + set.WeChatMiniAppId + "&secret=" + set.WeChatMiniAppSecret + "&js_code=" + code + "&grant_type=authorization_code");
|
|
|
+ string url = "https://api.weixin.qq.com/sns/jscode2session?appid=" + new WeChatFunction().AppId + "&secret=" + new WeChatFunction().AppSecret + "&js_code=" + code + "&grant_type=authorization_code";
|
|
|
+ function.WriteLog(url, "微信小程序通过code获取openid");
|
|
|
+ string result = function.GetWebRequest(url);
|
|
|
JsonData jsonObj = JsonMapper.ToObject(result);
|
|
|
string openid = jsonObj["openid"].ToString();
|
|
|
string session_key = jsonObj["session_key"].ToString();
|