91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

阳春市| 南和县| 临海市| 商河县| 易门县| 九龙坡区| 凤阳县| 凯里市| 孟津县| 青海省| 淮阳县| 龙口市| 吴桥县| 分宜县| 麻栗坡县| 石渠县| 金昌市| 永平县| 鱼台县| 泽库县| 武山县| 普安县| 南华县| 比如县| 潜江市| 东安县| 新安县| 吴江市| 盖州市| 临城县| 长武县| 孝昌县| 吴桥县| 秦安县| 武山县| 鄱阳县| 观塘区| 济阳县| 府谷县| 长春市| 西平县|