api가 쉽게 되어있어 급하게 만들어 보았습니다.
# pushbullet.class.php
[code]
<?php
class oh_push {
var $token_key;
var $push_url = 'https://api.pushbullet.com/v2/pushes';
public function __construct($token_key) {
$this->token_key = $token_key;
}
public function token() {
return $this->token_key;
}
public function send($email=array(), $body='', $title='') {
$type = 'note';
foreach($email as $k=>$v) {
$push_param = 'type='.$type.'&email='.$v.'&title='.$title.'&body='.$body;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $this->push_url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $push_param);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Access-Token: '.$this->token_key));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
}
}
}
$oh_push = new oh_push('토큰키');
$oh_push->send(array('이메일'), '내용', '제목');
[/code]
토큰은 푸시불렛의 셋팅에서 받을수 있습니다.
게시판 목록
팁게시판
질문은 상단의 QA에서 해주시기 바랍니다.
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 5702 |
잘살아보자
|
10년 전 | 419 | |
| 5701 |
잘살아보자
|
10년 전 | 751 | |
| 5700 |
잘살아보자
|
10년 전 | 485 | |
| 5699 |
잘살아보자
|
10년 전 | 394 | |
| 5698 |
잘살아보자
|
10년 전 | 458 | |
| 5697 |
잘살아보자
|
10년 전 | 409 | |
| 5696 |
잘살아보자
|
10년 전 | 438 | |
| 5695 |
잘살아보자
|
10년 전 | 379 | |
| 5694 |
|
10년 전 | 2259 | |
| 5693 |
잘살아보자
|
10년 전 | 595 | |
| 5692 |
잘살아보자
|
10년 전 | 333 | |
| 5691 |
잘살아보자
|
10년 전 | 381 | |
| 5690 |
잘살아보자
|
10년 전 | 406 | |
| 5689 | 10년 전 | 1941 | ||
| 5688 |
|
10년 전 | 1086 | |
| 5687 | 10년 전 | 947 | ||
| 5686 |
|
10년 전 | 1881 | |
| 5685 |
|
10년 전 | 1151 | |
| 5684 | 10년 전 | 903 | ||
| 5683 | 10년 전 | 768 | ||
| 5682 | 10년 전 | 573 | ||
| 5681 | 10년 전 | 1164 | ||
| 5680 | 10년 전 | 904 | ||
| 5679 | 10년 전 | 1383 | ||
| 5678 |
네이비칼라
|
10년 전 | 834 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기