늘맑음

slack webhook 관련 자료

· 2019-06-24 (월) 14:02:35 · 3178 · 1

curl로 연동하는 부분 입니다.

[code]

$data = array(
   'channel'     => $slack->channel,
   'username'    => $slack->username,
   'text'        => $message['body'],
   //'icon_emoji'  => $icon,
   //'attachments' => $attachments
);

echo "--- pass --->>" . PHP_EOL;
echo print_r($data, true) . PHP_EOL;

$data_string   = json_encode($data);
$ch = curl_init($slack->slack_url);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
   'Content-Type: application/json',
   'Content-Length: ' . strlen($data_string))
);
$result = null;
try {
   //Execute CURL
   $result = curl_exec($ch);
} catch(\Exception $e) {
}

[/code]

|

댓글 1개

2019-07-19 (금) 01:58:19
좋은정보 감사합니다.
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

5,403건

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
PHP 19-06-24 조회 3,179
PHP 19-06-09 조회 3,789
MySQL 19-04-01 조회 4,844
jQuery 19-03-20 조회 4,235
node.js 19-02-12 조회 3,325
node.js 19-02-12 조회 3,062
node.js 19-02-12 조회 3,324
node.js 19-02-07 조회 3,289
node.js 19-02-07 조회 3,046
node.js 19-02-07 조회 3,175
node.js 19-02-04 조회 2,910
node.js 19-02-04 조회 2,900
node.js 19-02-04 조회 3,333
node.js 19-01-31 조회 2,441
node.js 19-01-31 조회 2,591
node.js 19-01-31 조회 3,082
node.js 19-01-28 조회 2,846
node.js 19-01-28 조회 2,930
node.js 19-01-28 조회 2,754
node.js 19-01-22 조회 3,095
node.js 19-01-22 조회 2,849
node.js 19-01-22 조회 3,286
node.js 19-01-16 조회 2,717
node.js
[node.js]
19-01-16 조회 2,631
node.js 19-01-16 조회 9,305
node.js 19-01-12 조회 4,368
node.js 19-01-12 조회 2,988
node.js 19-01-12 조회 3,117
node.js 19-01-11 조회 2,690
node.js 19-01-11 조회 4,008