国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > .NET > 正文

微信公眾平臺(tái)開發(fā)之獲得ACCESSTOKEN .Net代碼解析

2024-07-10 12:47:01
字體:
供稿:網(wǎng)友

如何認(rèn)證成為開發(fā)者?請(qǐng)點(diǎn)擊第一篇文章進(jìn)行查看,成為了開發(fā)者之后微信平臺(tái)會(huì)給您appid和secret,在訂閱號(hào)中是沒有的,所以因該申請(qǐng)一下服務(wù)號(hào),有了ACCESSTOKEN才能做添加菜單,上傳/下載圖片等功能。

private string GetToken()   {     // 也可以這樣寫:     //return GetPage("https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=你的appid&secret=你的secret", "");         string res = "";     HttpWebRequest req = (HttpWebRequest)HttpWebRequest.Create("https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=你的appid&secret=你的secret"); req.Method = "GET";     using (WebResponse wr = req.GetResponse())     {       HttpWebResponse myResponse = (HttpWebResponse)req.GetResponse();       StreamReader reader = new StreamReader(myResponse.GetResponseStream(), Encoding.UTF8);       string content = reader.ReadToEnd();         List<ACCESSTOKEN> myACCESSTOKEN = Json.JSONStringToList<ACCESSTOKEN>(content);       res = myACCESSTOKEN[0].access_token;      }     return res;   }   public string GetPage(string posturl, string postData)   {     Stream outstream = null;     Stream instream = null;     StreamReader sr = null;     HttpWebResponse response = null;     HttpWebRequest request = null;     Encoding encoding = Encoding.UTF8;     byte[] data = encoding.GetBytes(postData);     // 準(zhǔn)備請(qǐng)求...     try     {       // 設(shè)置參數(shù)       request = WebRequest.Create(posturl) as HttpWebRequest;       CookieContainer cookieContainer = new CookieContainer();       request.CookieContainer = cookieContainer;       request.AllowAutoRedirect = true;       request.Method = "POST";       request.ContentType = "application/x-www-form-urlencoded";       request.ContentLength = data.Length;       outstream = request.GetRequestStream();       outstream.Write(data, 0, data.Length);       outstream.Close();       //發(fā)送請(qǐng)求并獲取相應(yīng)回應(yīng)數(shù)據(jù)       response = request.GetResponse() as HttpWebResponse;       //直到request.GetResponse()程序才開始向目標(biāo)網(wǎng)頁發(fā)送Post請(qǐng)求       instream = response.GetResponseStream();       sr = new StreamReader(instream, encoding);       //返回結(jié)果網(wǎng)頁(html)代碼       string content = sr.ReadToEnd();       string err = string.Empty;       return content;     }     catch (Exception ex)     {       string err = ex.Message;       Response.Write(err);       return string.Empty;     }   }

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持錯(cuò)新站長(zhǎng)站。

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 杭州市| 张家界市| 咸丰县| 巧家县| 高碑店市| 南部县| 绥芬河市| 望奎县| 天峻县| 南岸区| 平定县| 凌源市| 桂林市| 榆中县| 孝义市| 和林格尔县| 中西区| 泊头市| 鸡东县| 肥东县| 浙江省| 镇赉县| 海安县| 介休市| 炎陵县| 杨浦区| 咸宁市| 固镇县| 宣恩县| 长武县| 抚州市| 呼图壁县| 吉首市| 大同县| 澄迈县| 嘉定区| 吴桥县| 泸西县| 阳信县| 高邮市| 环江|