terrorboy
Recent Comments
Recent Posts
05-21 09:17
«   2025/05   »
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

z9n

[PHP] 네이트온 팀룸에 메시지 전송 본문

PHP

[PHP] 네이트온 팀룸에 메시지 전송

terrorboy 2017. 5. 19. 12:37

네이트온 팀룸에 메시지 전송

API 발급 방법

function nateon_teamroom($msg) {

    $webhook = '웹훅주소';
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $webhook); // Webhook URL
    curl_setopt($ch, CURLOPT_HEADER, false);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
    curl_setopt($ch, CURLOPT_POST, true);
    curl_setopt($ch, CURLOPT_TIMEOUT, 60);
    curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/x-www-form-urlencoded'));
    curl_setopt($ch, CURLOPT_POSTFIELDS, 'content='.urlencode($msg)); // 메시지
    $return = curl_exec($ch);
    curl_close($ch);
}

'PHP' 카테고리의 다른 글

[PHP] 10k, 1k등 숫자를 표기하기 위한 함수  (0) 2017.05.19
Comments