?自定義類型機(jī)器人文檔
自定義機(jī)器人發(fā)送群消息 - 釘釘開放平臺
驗(yàn)證簽名文檔
自定義機(jī)器人的創(chuàng)建和安裝 - 釘釘開放平臺文章來源:http://www.zghlxwxcb.cn/news/detail-821404.html
php代碼實(shí)現(xiàn)方式文章來源地址http://www.zghlxwxcb.cn/news/detail-821404.html
$groupId = "https://oapi.dingtalk.com/robot/send?access_token=cf224bd004fb135776f045d3"; //webhook地址
$secret = ""; //加簽
$timestamp = time() * 1000; // 注意:時間戳需要轉(zhuǎn)換為毫秒級
$stringToSign = $timestamp . "\n" . $secret;
$signature = hash_hmac('sha256', $stringToSign,$secret, true);
$base64Signature = base64_encode($signature);
$urlEncodedSignature = urlencode($base64Signature);
$messageData = [
'msgtype' => 'text',
'text' => [
'content' => "123asdfsadf",
],
];
$groupId .= "×tamp={$timestamp}&sign={$urlEncodedSignature}";
posturl($groupId,$messageData)
public static function posturl($url, $data = [], $header = [])
{
$data = json_encode($data);
$headerArray = array("Content-type:application/json;charset='utf-8'", "Accept:application/json");
$headerArray = array_merge($headerArray, $header);
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($curl, CURLOPT_POST, 1);
curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
curl_setopt($curl, CURLOPT_HTTPHEADER, $headerArray);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$output = curl_exec($curl);
curl_close($curl);
$result = json_decode($output, true);
print_r($result);die;
if(isset($result['code']) && $result['code'] == 0){
return $result;
}else{
$msg = isset($result['msg']) ? $result['msg'] : '調(diào)用報錯'.$output;
throw new \Exception($msg);
}
}
到了這里,關(guān)于釘釘機(jī)器人推送的文章就介紹完了。如果您還想了解更多內(nèi)容,請?jiān)谟疑辖撬阉鱐OY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!