123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using Library;
- using System.Security.Cryptography.X509Certificates;
- using System.Security.Cryptography;
- using Microsoft.AspNetCore.Http;
- using System.Text;
- using System.IO;
- using System.Linq;
- using MySystem;
- using LitJson;
- using System.Net;
- using Org.BouncyCastle.Crypto.Modes;
- using Org.BouncyCastle.Crypto.Parameters;
- using Org.BouncyCastle.Crypto.Engines;
- namespace MySystem
- {
- public class WeChatFunction
- {
- private HttpContext _context;
- public string AppId = "wx6e074b8e07b6577e";
- public string AppSecret = "883f9ef7831d8ca82168c3fd6dcfb750";
- }
- }
|