最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

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

 更新時間:2016年06月24日 10:25:27   作者:hechurui  
這篇文章主要為大家詳細(xì)解析了微信公眾平臺開發(fā)之獲得ACCESSTOKEN .Net代碼,感興趣的小伙伴們可以參考一下

如何認(rèn)證成為開發(fā)者?請點(diǎn)擊第一篇文章進(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;
     }
   }

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評論

长乐市| 蚌埠市| 岫岩| 金坛市| 昭通市| 肥西县| 涞源县| 凯里市| 加查县| 威信县| 松滋市| 华蓥市| 云龙县| 望都县| 乐清市| 嘉鱼县| 饶河县| 保靖县| 津南区| 翼城县| 青阳县| 福建省| 浦城县| 日照市| 濮阳县| 梓潼县| 大埔县| 石门县| 湘潭县| 即墨市| 东乌珠穆沁旗| 松江区| 盐源县| 双峰县| 井冈山市| 富蕴县| 和平县| 襄汾县| 遵义县| 汤原县| 贞丰县|