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에서 해주시기 바랍니다.
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 5652 | 10년 전 | 1296 | ||
| 5651 |
멋진남자임
|
10년 전 | 1408 | |
| 5650 | 10년 전 | 3106 | ||
| 5649 | 10년 전 | 1497 | ||
| 5648 |
멋진남자임
|
10년 전 | 2009 | |
| 5647 | 10년 전 | 5002 | ||
| 5646 | 10년 전 | 1731 | ||
| 5645 |
멋진남자임
|
10년 전 | 1887 | |
| 5644 | 10년 전 | 1555 | ||
| 5643 |
|
10년 전 | 1676 | |
| 5642 | 10년 전 | 2363 | ||
| 5641 | 10년 전 | 1473 | ||
| 5640 | 10년 전 | 1459 | ||
| 5639 | 10년 전 | 2387 | ||
| 5638 |
|
10년 전 | 3213 | |
| 5637 | 10년 전 | 3809 | ||
| 5636 | 10년 전 | 2097 | ||
| 5635 | 10년 전 | 1450 | ||
| 5634 | 10년 전 | 3339 | ||
| 5633 |
CHAVO
|
10년 전 | 1038 | |
| 5632 | 10년 전 | 2445 | ||
| 5631 | 10년 전 | 3199 | ||
| 5630 | 10년 전 | 1226 | ||
| 5629 | 10년 전 | 1332 | ||
| 5628 | 10년 전 | 2548 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기