PHP

 

 

<?

   $reg_id="디바이스 토큰을 여기다 넣으세요";


   $headers = array(
   'Content-Type:application/json',
   'Authorization:key=서버키를 여기다 넣으세요'
   );



   $temp_msg = "Message Test";

   $arr   = array();
   $arr['data'] = array();
   $arr['data']['msg'] = "메시지";
   $arr['registration_ids'] = array();
   $arr['registration_ids'][0] = "$reg_id";
   
   $ch = curl_init();

   curl_setopt($ch, CURLOPT_URL,    'https://android.googleapis.com/gcm/send');
   curl_setopt($ch, CURLOPT_HTTPHEADER,  $headers);
   curl_setopt($ch, CURLOPT_POST,    true);
   curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
   curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
   curl_setopt($ch, CURLOPT_POSTFIELDS,json_encode($arr));

  $response = curl_exec($ch);

  echo $response;
  curl_close($ch);

?>

 

http://www.webmadang.net/develop/develop.do?action=read&boardid=1003&page=1&seq=80

 

about author

PHRASE

Level 60  라이트

지금 잘 다스려진 태평한 세상이라고 해도 어지러워지는 난세가 될 것을 잊어서는 안 된다. 그렇게 함으로써 몸이 편안할 수가 있고 국가를 보전할 수가 있는 것이다. -역경

댓글 ( 4)

댓글 남기기

작성

PHP 목록    more