钉钉API接口调用
程序员文章站
2024-02-11 09:22:22
...
1、通行参数:Appsecret // Appkey //agentId //钉钉管理后台把公网IP加入白名单
//通行参数获取access_token
public static string GetToken()
{
IDingTalkClient client = new DefaultDingTalkClient("https://oapi.dingtalk.com/gettoken");
OapiGettokenRequest req = new OapiGettokenRequest();
req.Appkey = Appkey;
req.Appsecret = Appsecret;
req.SetHttpMethod("GET");
OapiGettokenResponse rsp = client.Execute(req);
CGetToken token_json = JsonConvert.DeserializeObject<CGetToken>(rsp.Body);
return token_json.access_token;
}
2、钉钉SDK及在线测试接口地址:https://open-dev.dingtalk.com/apiExplorer#/
3、钉钉接口调用流程:1.通过企业唯一通行参数获取access_token==》2.调用SDK里相应的接口方法获取json数据(可通过钉钉SDK及在线测试接口生成方法代码)==>4.序列化json数据存入数据库
4、借口SDK可到钉钉开放平台官网下载
上一篇: 20140530-MySQL插入中文问题再做笔记_MySQL
下一篇: PHP生成柱状图实例代码