slack webhook 관련 자료
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개
이종현유통
6년 전
좋은정보 감사합니다.
게시판 목록
개발자팁
개발과 관련된 유용한 정보를 공유하세요.
질문은 QA에서 해주시기 바랍니다.
질문은 QA에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 5186 | PHP |
swallow
|
2년 전 | 943 | |
| 5185 | PHP |
swallow
|
2년 전 | 962 | |
| 5184 | PHP |
swallow
|
2년 전 | 539 | |
| 5183 | PHP |
swallow
|
2년 전 | 847 | |
| 5182 | PHP |
swallow
|
2년 전 | 778 | |
| 5181 | 기타 |
swallow
|
2년 전 | 1022 | |
| 5180 | 2년 전 | 574 | |||
| 5179 | 기타 |
swallow
|
2년 전 | 1434 | |
| 5178 | PHP |
swallow
|
2년 전 | 796 | |
| 5177 | JavaScript |
swallow
|
2년 전 | 1493 | |
| 5176 | PHP |
swallow
|
2년 전 | 1189 | |
| 5175 | 2년 전 | 566 | |||
| 5174 | 기타 | 2년 전 | 816 | ||
| 5173 | PHP |
|
2년 전 | 969 | |
| 5172 | PHP |
|
2년 전 | 1253 | |
| 5171 | 기타 |
그누GPT
|
2년 전 | 1557 | |
| 5170 | PHP |
|
2년 전 | 1054 | |
| 5169 | PHP |
|
2년 전 | 1228 | |
| 5168 | PHP |
|
2년 전 | 1200 | |
| 5167 | JavaScript |
|
2년 전 | 999 | |
| 5166 | MySQL | 2년 전 | 1193 | ||
| 5165 | MySQL | 2년 전 | 1256 | ||
| 5164 | PHP | 2년 전 | 1502 | ||
| 5163 | OS |
|
2년 전 | 843 | |
| 5162 | 웹서버 |
|
2년 전 | 893 | |
| 5161 | 웹서버 |
|
2년 전 | 976 | |
| 5160 | PHP |
|
2년 전 | 844 | |
| 5159 | PHP |
|
2년 전 | 909 | |
| 5158 | PHP |
|
2년 전 | 919 | |
| 5157 | PHP |
|
2년 전 | 943 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기