中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

微信公眾平臺開發中如何獲得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

专栏| 绩溪县| 教育| 云梦县| 德令哈市| 上蔡县| 天长市| 兴城市| 乌兰察布市| 东宁县| 子洲县| 惠来县| 永兴县| 桓仁| 无为县| 喜德县| 沙河市| 临沂市| 玉山县| 巴塘县| 巴里| 雷州市| 华坪县| 镇原县| 平潭县| 武山县| 阜新| 理塘县| 金沙县| 昌图县| 尚义县| 敖汉旗| 凤翔县| 自贡市| 定南县| 赣榆县| 六盘水市| 临泉县| 中宁县| 潮安县| 平乡县|