亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

微信公眾平臺開發中如何獲得ACCESSTOKEN .Net

發布時間:2021-09-16 17:49:30 來源:億速云 閱讀:99 作者:柒染 欄目:開發技術

本篇文章給大家分享的是有關微信公眾平臺開發中如何獲得ACCESSTOKEN .Net,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

成為了開發者之后微信平臺會給您appid和secret,在訂閱號中是沒有的,所以因該申請一下服務號,有了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);
     // 準備請求...
     try
     {
       // 設置參數
       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();
       //發送請求并獲取相應回應數據
       response = request.GetResponse() as HttpWebResponse;
       //直到request.GetResponse()程序才開始向目標網頁發送Post請求
       instream = response.GetResponseStream();
       sr = new StreamReader(instream, encoding);
       //返回結果網頁(html)代碼
       string content = sr.ReadToEnd();
       string err = string.Empty;
       return content;
     }
     catch (Exception ex)
     {
       string err = ex.Message;
       Response.Write(err);
       return string.Empty;
     }
   }

以上就是微信公眾平臺開發中如何獲得ACCESSTOKEN .Net,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

乌拉特前旗| 大埔区| 永嘉县| 丰顺县| 德保县| 三明市| 廊坊市| 衡东县| 泸定县| 二连浩特市| 北票市| 商水县| 那曲县| 共和县| 伊金霍洛旗| 铅山县| 巴东县| 沾化县| 益阳市| 安陆市| 南阳市| 宣威市| 内丘县| 西城区| 民丰县| 墨竹工卡县| 澎湖县| 康马县| 周宁县| 正定县| 阿合奇县| 醴陵市| 迁西县| 合作市| 神农架林区| 南汇区| 离岛区| 巢湖市| 云南省| 江阴市| 桃源县|