茄子在线看片免费人成视频,午夜福利精品a在线观看,国产高清自产拍在线观看,久久综合久久狠狠综合

    <s id="ddbnn"></s>
  • <sub id="ddbnn"><ol id="ddbnn"></ol></sub>

  • <legend id="ddbnn"></legend><s id="ddbnn"></s>

    微信公眾平臺開發(fā)之獲得ACCESSTOKEN .Net代碼解析
    來源:易賢網(wǎng) 閱讀:1263 次 日期:2016-08-06 13:18:20
    溫馨提示:易賢網(wǎng)小編為您整理了“微信公眾平臺開發(fā)之獲得ACCESSTOKEN .Net代碼解析”,方便廣大網(wǎng)友查閱!

    這篇文章主要為大家詳細解析了微信公眾平臺開發(fā)之獲得ACCESSTOKEN .Net代碼,感興趣的小伙伴們可以參考一下

    成為了開發(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);

         // 準備請求...

         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()程序才開始向目標網(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;

         }

       }

    以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助

    更多信息請查看網(wǎng)絡(luò)編程
    易賢網(wǎng)手機網(wǎng)站地址:微信公眾平臺開發(fā)之獲得ACCESSTOKEN .Net代碼解析

    2026上岸·考公考編培訓報班

    • 報班類型
    • 姓名
    • 手機號
    • 驗證碼
    關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 新媒體/短視頻平臺 | 手機站點 | 投訴建議
    工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號
    聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號:hfpxwx
    咨詢QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)