forked from easychen/wecomchan
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
using System; | ||
using RestSharp; | ||
using Newtonsoft.Json; | ||
namespace WeCom.Demo | ||
{ | ||
class WeCom | ||
{ | ||
public string SendToWeCom( | ||
string text,// 推送消息 | ||
string weComCId,// 企业Id① | ||
string weComSecret,// 应用secret② | ||
string weComAId,// 应用ID③ | ||
string weComTouId = "@all") | ||
{ | ||
// 获取Token | ||
string getTokenUrl = $"https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid={weComCId}&corpsecret={weComSecret}"; | ||
string token = JsonConvert | ||
.DeserializeObject<dynamic>(new RestClient(getTokenUrl) | ||
.Get(new RestRequest()).Content).access_token; | ||
System.Console.WriteLine(token); | ||
if (!String.IsNullOrWhiteSpace(token)) | ||
{ | ||
var request = new RestRequest(); | ||
var client = new RestClient($"https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token={token}"); | ||
var data = new | ||
{ | ||
touser = weComTouId, | ||
agentid = weComAId, | ||
msgtype = "text", | ||
text = new | ||
{ | ||
content = text | ||
}, | ||
duplicate_check_interval = 600 | ||
}; | ||
string serJson = JsonConvert.SerializeObject(data); | ||
System.Console.WriteLine(serJson); | ||
request.Method = Method.POST; | ||
request.AddHeader("Accept", "application/json"); | ||
request.Parameters.Clear(); | ||
request.AddParameter("application/json", serJson, ParameterType.RequestBody); | ||
return client.Execute(request).Content; | ||
} | ||
return "-1"; | ||
} | ||
static void Main(string[] args) | ||
{ // 测试 | ||
Console.Write(new WeCom().SendToWeCom( | ||
"msginfo", | ||
"企业Id①" | ||
, "应用secret②", | ||
"应用ID③" | ||
)); | ||
} | ||
|
||
} | ||
} | ||
|