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));
        }
        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));
        }