最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁 - 科技 - 知識百科 - 正文

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

來源:懂視網(wǎng) 責(zé)編:小采 時間:2020-11-27 22:37:03
文檔

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

微信公眾平臺開發(fā)之獲得ACCESSTOKEN .Net代碼解析:如何認(rèn)證成為開發(fā)者?請點擊第一篇文章進(jìn)行查看,成為了開發(fā)者之后微信平臺會給您appid和secret,在訂閱號中是沒有的,所以因該申請一下服務(wù)號,有了ACCESSTOKEN才能做添加菜單,上傳/下載圖片等功能。 private string GetToken() { //
推薦度:
導(dǎo)讀微信公眾平臺開發(fā)之獲得ACCESSTOKEN .Net代碼解析:如何認(rèn)證成為開發(fā)者?請點擊第一篇文章進(jìn)行查看,成為了開發(fā)者之后微信平臺會給您appid和secret,在訂閱號中是沒有的,所以因該申請一下服務(wù)號,有了ACCESSTOKEN才能做添加菜單,上傳/下載圖片等功能。 private string GetToken() { //

如何認(rèn)證成為開發(fā)者?請點擊第一篇文章進(jìn)行查看,成為了開發(fā)者之后微信平臺會給您appid和secret,在訂閱號中是沒有的,所以因該申請一下服務(wù)號,有了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)備請求...
 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ā)送請求并獲取相應(yīng)回應(yīng)數(shù)據(jù)
 response = request.GetResponse() as HttpWebResponse;
 //直到request.GetResponse()程序才開始向目標(biāo)網(wǎng)頁發(fā)送Post請求
 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;
 }
 }

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

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

微信公眾平臺開發(fā)之獲得ACCESSTOKEN .Net代碼解析:如何認(rèn)證成為開發(fā)者?請點擊第一篇文章進(jìn)行查看,成為了開發(fā)者之后微信平臺會給您appid和secret,在訂閱號中是沒有的,所以因該申請一下服務(wù)號,有了ACCESSTOKEN才能做添加菜單,上傳/下載圖片等功能。 private string GetToken() { //
推薦度:
標(biāo)簽: 平臺 獲取 訂閱號
  • 熱門焦點

最新推薦

猜你喜歡

熱門推薦

專題
Top