资源简介
c#微信企业号推送消息,亲测通过__(0521).rar
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.IO;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Web.script.Serialization;
using System.Data.SqlClient;
using System.Net;
using System.Collections.Specialized;
/*
更 多 .net 资 源 下 载 https://www.cnblogs.com/just-soso/ ( 阅 读 密 码 :2723812263)
*/
namespace DianJiRuKu
{
public partial class FrmOther : Form
{
/*
更 多 .net 资 源 下 载 https://www.cnblogs.com/just-soso/ ( 阅 读 密 码 :2723812263)
*/
public FrmOther()
{
InitializeComponent();
}
//共用代码
public class TokenInfor
{
public string access_token { get; set; }
public int expires_in { get; set; }
}
public class mediaid
{
public string media_id { get; set; }
public int created_at { get; set; }
}
private static String URL = “https://qyapi.weixin.qq.com/cgi-bin/gettoken“;
private static String URLTEXT = “https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token=“;
private static String URLupload = “https://qyapi.weixin.qq.com/cgi-bin/media/upload?access_token=“;//&type=TYPE
private static int Expires_Period = 7200;//过期的时间为两个小时
/*
更 多 .net 资 源 下 载 https://www.cnblogs.com/just-soso/ ( 阅 读 密 码 :2723812263)
*/
private static String corpid = ““;//后一个企业微信号的corpid
private static String corpsecret = ““;//测试应用的corpsecret
private static DateTime GetAccessToken_Time; //记录获取token的时间
string tokenx = ““;
public string LoadText1(string media_id string UserID)
{
string m_template = @“{“ +
“\“touser\“:\“@all\““ +
“\“toparty\“:\“@all\““ +
“\“totag\“: \“@all\““ +
“\“msgtype\“: \“image\““ +
“\“agentid\“: 1000003“ +
“\“image\“: {“ +
“\“media_id\“: \““ + media_id + “\““ +
“}“ +
“\“safe\“:0“ +
“}“;
return m_template;
}
public string LoadText2(string media_id string UserID)
{
string m_template = @“{“ +
“\“touser\“:\“@all\““ +
“\“toparty\“:\“@all\““ +
“\“totag\“: \“@all\““ +
“\“msgtype\“: \“voice\““ +
“\“agentid\“: 1000003“ +
“\“voice\“: {“ +
“\“m
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 21700 2019-05-21 15:51 c#微信企业号推送消息,亲测通过__(0521)\1.rar
文件 10044 2019-05-20 16:52 c#微信企业号推送消息,亲测通过__(0521)\FrmOther.cs
文件 13775 2019-05-20 16:53 c#微信企业号推送消息,亲测通过__(0521)\FrmOther.Designer.cs
文件 5817 2017-10-20 09:35 c#微信企业号推送消息,亲测通过__(0521)\FrmOther.resx
文件 1778 2019-05-20 16:52 c#微信企业号推送消息,亲测通过__(0521)\PinYinHelper.cs
文件 7929 2019-05-20 16:53 c#微信企业号推送消息,亲测通过__(0521)\tools.cs
目录 0 2019-05-21 15:52 c#微信企业号推送消息,亲测通过__(0521)
----------- --------- ---------- ----- ----
61043 7
相关资源
- 自定义的ListView(C#) 可以在任意列
- C# 后台HTML代码拼接工具
- 基于C#的FTP客户端的实现(网络编程课
- c#获取系统和指定进程的CPU和内存占用
- udp打洞源码服务端和客户端C# 实现
- [c#]wince平台下的GPIO接口使用测试程序
- C#中使用ACCESS数据库进行查询WinForm程
- 放大,缩小,图形显示C#+ARCENGINE.rar
- A*算法C#实现,三次B样条优化
- C#实现Excel转txt
- C#转报表程序
- ExtendedWebBrowser 扩展C#的webbrowser
- 基于C#的上位机设计毕业论文
- C#注册码注册机制完整源码.rar
- C#版本opc da 源码最低分分享
- 使用C#读取csv文件的(经典)
- C#仿Windows可折叠导航栏
- C# 高斯函数 程序
- 蒋波涛插件式GIS应用程序框架的设计
- C# 通用USB摄像头编程
- Wince手持机直接访问SqlServer数据库服务
- VS2015下用C#连接数据库代码
- wpf实现Socket通信
- C# ASP.net 物流信息网站
- c# AE 属性查询
- ASP.NETC#邮件收发管理系统论文及毕业
- DS18B20 ID号搜索函数(C#)
- C# 的连连看小游戏源代码
- C#小游戏拯救大行动源代码
- C#ListView控件使用简单源代码
评论
共有 条评论