3. 我的站点

3.1. 金柜公司

3.1.1. zzy

3.1.1.1. 域名

域名caigk.com有效期 域名caiyr.com有效期 域名     weihesoft.com有效期 域名tq-soft.com有效期

3.1.2. aliyun

3.1.2.1. 域名

域名dianku.xin有效期 域名dian-ku.com有效期 域名dianku.net.cn有效期 域名jinguisoft.com有效期 域名kchis.com有效期 域名hotelsaas.com有效期 域名weihesoft.cn有效期

3.1.3. huaweicloud

3.1.3.1. 域名

域名wowmes.com有效期

3.1.4. cloudflare

3.1.4.1. 域名

域名wowmes.com有效期

3.2. 我的

3.2.1. github

3.2.2. cloudflare

portal

weixin auth test

ai.caigk.com mes.caigk.com cnc.caigk.com

3.3. weixin.caigk.com 服务

METHOD

PATH

req参数

说明

GET

/

首页

GET

/api

待开发

POST

/email

发送邮件

1curl "https://weixin.caigk.com/email" -X POST \
2  -H "Accept: application/json" \
3  -H "Content-Type: application/json" \
4  -d '{
5      "To": "***@caigk.com",
6      "Subject": "Postmark test",
7      "TextBody": "Hello dear Postmark user.",
8      "HtmlBody": "<html><body><H1>Hello!</H1><p>恭喜:测试成功!</p></body></html>"
9      }'

GET

/weixin

grant_type

appid

secret

验证签名

curl "https://api.weixin.qq.com/cgi-bin/token\?grant_type\=client_credential\&appid\={appid}\&secret\={secret}"

GET

/api/stc-sl

发送一个测试微信消息

curl "https://weixin.caigk.com/api/stc-sl"

POST

/api/stc-sl

body: markdown

发送一个企业微信群消息

 1 curl  https://weixin.caigk.com/api/stc-sl -d '
 2 # 标题一
 3 ## 标题二
 4 ### 标题三
 5 #### 标题四
 6 ##### 标题五
 7 ###### 标题六
 8
 9 **加粗**
10
11 [这是一个链接](http://work.weixin.qq.com/api/doc)
12
13 `git clone ***** #code `
14
15 > 引用文字1
16 > 引用文字2
17
18 <font color="info">绿色</font>
19 <font color="comment">灰色</font>
20 <font color="warning">橙红色</font>
21 '