• 大小: 18.03M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: asp.net  C#  .NET  

资源简介

需把以下信息修改为自己申请的公众号的信息( 代码在WeiXinTest项目中BasePage.cs中) 这行代码

                //获取appId,appSecret的配置信息
                string appId = "wx12345678****";
                string appSecret = "25f9e794323b453885f****";
                string redirecturl = HttpContext.Current.Request.Url.ToString();//这里需要改成 你在微信授权的 url网址,否则会提示  redirect_uri 参数错误

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.IO;
using System.Linq;
using System.Net;
using System.Text;
using System.Text.Regularexpressions;
using System.Threading.Tasks;
using System.Web;

namespace WeiXinOAuth
{
    public abstract class baseOAuth
    {
        #region 内部使用函数  

        ///   
        /// GET请求  
        /// 
  
        ///   
        ///   
        protected string GetRequest(string url)
        {
            HttpWebRequest httpWebRequest = System.Net.WebRequest.Create(url) as HttpWebRequest;
            httpWebRequest.Method = “GET“;
            httpWebRequest.ServicePoint.Expect100Continue = false;

            StreamReader

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2016-11-24 13:24  packages\
     目录           0  2016-11-24 13:24  packages\Microsoft.ApplicationInsights.2.1.0\
     目录           0  2016-11-24 13:24  packages\Microsoft.ApplicationInsights.2.1.0\lib\
     目录           0  2016-11-24 13:24  packages\Microsoft.ApplicationInsights.2.1.0\lib\dotnet5.4\
     文件      162040  2016-06-06 10:42  packages\Microsoft.ApplicationInsights.2.1.0\lib\dotnet5.4\Microsoft.ApplicationInsights.dll
     文件      151938  2016-06-06 10:42  packages\Microsoft.ApplicationInsights.2.1.0\lib\dotnet5.4\Microsoft.ApplicationInsights.xml
     目录           0  2016-11-24 13:24  packages\Microsoft.ApplicationInsights.2.1.0\lib\net40\
     文件      165624  2016-06-06 10:42  packages\Microsoft.ApplicationInsights.2.1.0\lib\net40\Microsoft.ApplicationInsights.dll
     文件      160494  2016-06-06 10:42  packages\Microsoft.ApplicationInsights.2.1.0\lib\net40\Microsoft.ApplicationInsights.xml
     目录           0  2016-11-24 13:24  packages\Microsoft.ApplicationInsights.2.1.0\lib\net45\
     文件      163576  2016-06-06 10:42  packages\Microsoft.ApplicationInsights.2.1.0\lib\net45\Microsoft.ApplicationInsights.dll
     文件      160924  2016-06-06 10:42  packages\Microsoft.ApplicationInsights.2.1.0\lib\net45\Microsoft.ApplicationInsights.xml
     目录           0  2016-11-24 13:24  packages\Microsoft.ApplicationInsights.2.1.0\lib\net46\
     文件      166648  2016-06-06 10:42  packages\Microsoft.ApplicationInsights.2.1.0\lib\net46\Microsoft.ApplicationInsights.dll
     文件      168453  2016-06-06 10:42  packages\Microsoft.ApplicationInsights.2.1.0\lib\net46\Microsoft.ApplicationInsights.xml
     目录           0  2016-11-24 13:24  packages\Microsoft.ApplicationInsights.2.1.0\lib\portable-win81+wpa81\
     文件      145656  2016-06-06 10:42  packages\Microsoft.ApplicationInsights.2.1.0\lib\portable-win81+wpa81\Microsoft.ApplicationInsights.dll
     目录           0  2016-11-24 13:24  packages\Microsoft.ApplicationInsights.2.1.0\lib\uap10.0\
     文件      145656  2016-06-06 10:42  packages\Microsoft.ApplicationInsights.2.1.0\lib\uap10.0\Microsoft.ApplicationInsights.dll
     目录           0  2016-11-24 13:24  packages\Microsoft.ApplicationInsights.2.1.0\lib\wp8\
     文件      144624  2016-06-06 10:42  packages\Microsoft.ApplicationInsights.2.1.0\lib\wp8\Microsoft.ApplicationInsights.dll
     文件      532756  2016-11-24 13:24  packages\Microsoft.ApplicationInsights.2.1.0\Microsoft.ApplicationInsights.2.1.0.nupkg
     目录           0  2016-11-24 13:24  packages\Microsoft.ApplicationInsights.Agent.Intercept.1.2.1\
     目录           0  2016-11-24 13:24  packages\Microsoft.ApplicationInsights.Agent.Intercept.1.2.1\lib\
     目录           0  2016-11-24 13:24  packages\Microsoft.ApplicationInsights.Agent.Intercept.1.2.1\lib\net40\
     文件     1840368  2015-12-07 19:04  packages\Microsoft.ApplicationInsights.Agent.Intercept.1.2.1\lib\net40\Microsoft.AI.Agent.Intercept.dll
     目录           0  2016-11-24 13:24  packages\Microsoft.ApplicationInsights.Agent.Intercept.1.2.1\lib\net45\
     文件     1839344  2015-12-07 19:04  packages\Microsoft.ApplicationInsights.Agent.Intercept.1.2.1\lib\net45\Microsoft.AI.Agent.Intercept.dll
     文件     1453471  2016-11-24 13:24  packages\Microsoft.ApplicationInsights.Agent.Intercept.1.2.1\Microsoft.ApplicationInsights.Agent.Intercept.1.2.1.nupkg
     目录           0  2016-11-24 13:24  packages\Microsoft.ApplicationInsights.DependencyCollector.2.1.0\
     目录           0  2016-11-24 13:24  packages\Microsoft.ApplicationInsights.DependencyCollector.2.1.0\content\
............此处省略205个文件信息

评论

共有 条评论