[code]
<?php
/*
https://telegram.me/botfather 접속하여 봇아빠를 채팅창에 호출 하고 다음 커맨드를 입력
-------------------------------
봇이름 /newbot
봇실재아이디(끝에 bot을 붙여준다)
/token
/setabouttext
봇정보 안내문구
/setdescription
접속문구
-------------------------------
token이 바로 api
*/
header('Content-Type: text/html; charset=utf-8');
# 기본환경설정
define('TOKEN_KEY','');
define('BASE_URL', 'https://api.telegram.org/bot'.TOKEN_KEY);
# CURL Function
function GetCurl($url, $data=array()) {
// 서버로 전송 및 결과 반환
$rest = curl_init();
curl_setopt($rest, CURLOPT_URL, $url);
curl_setopt($rest, CURLOPT_POST, false);
curl_setopt($rest, CURLOPT_RETURNTRANSFER, true);
$Result = curl_exec($rest);
curl_close($rest);
return json_decode($Result, true);
}
if($_GET['type'] == 'room') {
# 채팅룸 추출
$Room = GetCurl(BASE_URL.'/getUpdates?limit=100');
$Room_id = array();
foreach($Room['result'] as $k=>$v) {
$Room_id[] = $v['message']['chat']['id'];
}
$Room_id = array_unique($Room_id);
$Room_id = array_values($Room_id);
var_dump($Room_id);
echo '<hr>';
var_dump($Room);
} else {
# 지정발송
if($_GET['room_id']) $Room_id = $_GET['room_id'];
else $Room_id = array('52227374','119732868', '84094887');
if($_GET['msg']) $msg = $_GET['msg'];
else $msg = date('Y-m-d H:i:s');
if(sizeof($Room_id) > 0) {
# 발송하기
foreach($Room_id as $k=>$v) {
$Result = GetCurl(BASE_URL.'/sendMessage?chat_id='.$v.'&text='.urlencode($msg));
print_r($Result);
echo '<hr>';
}
}
else if(is_array($Room_id) === false && $Room_id) {
$Result = GetCurl(BASE_URL.'/sendMessage?chat_id='.$Room_id.'&text='.urlencode($msg));
print_r($Result);
echo '<hr>';
}
}
[/code]

이런분안계시겠죠?
댓글 10개
이런사람입니다. ^^
미투 !!
잘될거에요!
봇생성만 조금 어렵지 그다음은 쉬우니....
좋은자료 감사합니다 .!!
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7530 | 10년 전 | 810 | ||
| 7529 |
파랑새1597
|
10년 전 | 1230 | |
| 7528 |
파랑새1597
|
10년 전 | 1326 | |
| 7527 |
integrity7
|
10년 전 | 1407 | |
| 7526 | 10년 전 | 2430 | ||
| 7525 |
다빈치코드777
|
10년 전 | 1117 | |
| 7524 | 10년 전 | 1584 | ||
| 7523 | 10년 전 | 972 | ||
| 7522 |
|
10년 전 | 1000 | |
| 7521 |
blackkil
|
10년 전 | 1884 | |
| 7520 | 10년 전 | 1305 | ||
| 7519 |
Gaumi
|
10년 전 | 1088 | |
| 7518 | 10년 전 | 1496 | ||
| 7517 | 10년 전 | 839 | ||
| 7516 | 10년 전 | 1301 | ||
| 7515 | 10년 전 | 1417 | ||
| 7514 |
|
10년 전 | 4494 | |
| 7513 |
멋진남자임
|
10년 전 | 1138 | |
| 7512 |
다빈치코드777
|
10년 전 | 883 | |
| 7511 |
|
10년 전 | 3413 | |
| 7510 | 10년 전 | 1378 | ||
| 7509 | 10년 전 | 1154 | ||
| 7508 | 10년 전 | 721 | ||
| 7507 |
senseme
|
10년 전 | 760 | |
| 7506 |
멋진남자임
|
10년 전 | 1652 | |
| 7505 | 10년 전 | 4024 | ||
| 7504 | 10년 전 | 2157 | ||
| 7503 | 10년 전 | 999 | ||
| 7502 | 10년 전 | 524 | ||
| 7501 | 10년 전 | 1450 | ||
| 7500 | 10년 전 | 1502 | ||
| 7499 | 10년 전 | 3405 | ||
| 7498 | 10년 전 | 1237 | ||
| 7497 |
dethos79
|
10년 전 | 2971 | |
| 7496 | 10년 전 | 2170 | ||
| 7495 | 10년 전 | 889 | ||
| 7494 |
CHAVO
|
10년 전 | 1140 | |
| 7493 | 10년 전 | 2660 | ||
| 7492 | 10년 전 | 1286 | ||
| 7491 | 10년 전 | 1496 | ||
| 7490 | 10년 전 | 2348 | ||
| 7489 | 10년 전 | 2126 | ||
| 7488 |
toptopon
|
10년 전 | 900 | |
| 7487 |
|
10년 전 | 1043 | |
| 7486 | 10년 전 | 3368 | ||
| 7485 | 10년 전 | 1323 | ||
| 7484 | 10년 전 | 1382 | ||
| 7483 | 10년 전 | 1037 | ||
| 7482 | 10년 전 | 664 | ||
| 7481 | 10년 전 | 862 | ||
| 7480 | 10년 전 | 1239 | ||
| 7479 | 10년 전 | 2614 | ||
| 7478 | 10년 전 | 1181 | ||
| 7477 |
멋진남자임
|
10년 전 | 1532 | |
| 7476 |
zeppeto
|
10년 전 | 1149 | |
| 7475 |
200점아빠
|
10년 전 | 922 | |
| 7474 | 10년 전 | 4014 | ||
| 7473 | 10년 전 | 1006 | ||
| 7472 |
나르시스1
|
10년 전 | 1255 | |
| 7471 | 10년 전 | 882 | ||
| 7470 | 10년 전 | 1300 | ||
| 7469 |
플라이SINJI
|
10년 전 | 994 | |
| 7468 |
|
10년 전 | 567 | |
| 7467 |
|
10년 전 | 678 | |
| 7466 | 10년 전 | 1140 | ||
| 7465 | 10년 전 | 1194 | ||
| 7464 |
|
10년 전 | 1204 | |
| 7463 | 10년 전 | 1267 | ||
| 7462 |
진짜별사탕
|
10년 전 | 872 | |
| 7461 | 10년 전 | 961 | ||
| 7460 | 10년 전 | 3747 | ||
| 7459 |
멋진남자임
|
10년 전 | 1566 | |
| 7458 |
멋진남자임
|
10년 전 | 492 | |
| 7457 | 10년 전 | 927 | ||
| 7456 | 10년 전 | 774 | ||
| 7455 | 10년 전 | 2179 | ||
| 7454 | 10년 전 | 636 | ||
| 7453 | 10년 전 | 841 | ||
| 7452 |
중국어사이트제작
|
10년 전 | 511 | |
| 7451 | 10년 전 | 916 | ||
| 7450 | 10년 전 | 637 | ||
| 7449 |
울라라라우
|
10년 전 | 960 | |
| 7448 | 10년 전 | 1641 | ||
| 7447 |
멋진남자임
|
10년 전 | 516 | |
| 7446 | 10년 전 | 560 | ||
| 7445 |
네이비칼라
|
10년 전 | 1693 | |
| 7444 |
senseme
|
10년 전 | 1415 | |
| 7443 | 10년 전 | 1350 | ||
| 7442 | 10년 전 | 735 | ||
| 7441 |
멋진남자임
|
10년 전 | 1449 | |
| 7440 | 10년 전 | 922 | ||
| 7439 |
|
10년 전 | 777 | |
| 7438 |
|
10년 전 | 948 | |
| 7437 |
basement
|
10년 전 | 1045 | |
| 7436 |
잘살아보자
|
11년 전 | 1137 | |
| 7435 | 11년 전 | 1098 | ||
| 7434 | 11년 전 | 3799 | ||
| 7433 |
|
11년 전 | 2756 | |
| 7432 |
alexkim
|
11년 전 | 868 | |
| 7431 |
이웃집초보
|
11년 전 | 1322 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기