コード例 #1
0
        public NextExec <JsonGetAccessToken> WillDo(RequestAccessToken token)
        {
            var wxapi = string.Format(
                ConfigSection.WxOpenIdUrlTemplateString,
                this.appid, this.secret, this.code, this.grant_type);

            return(this.GetResult(wxapi));
        }
コード例 #2
0
        public NextExec <JsonGetAccessToken> WillDo(RequestAccessToken token)
        {
            var wxapi = string.Format(
                ConfigurationManager.AppSettings[WxDevConst.GetWxOpenId],
                this.appid, this.secret, this.code, this.grant_type);

            return(this.GetResult(wxapi));
        }