pushbullet 푸시 발송

· 10년 전 · 1527

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]

 

 

토큰은 푸시불렛의 셋팅에서 받을수 있습니다.

|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
10년 전 조회 1,235
10년 전 조회 1,208
10년 전 조회 1,282
10년 전 조회 1,200
10년 전 조회 1,152
10년 전 조회 1,135
10년 전 조회 1,153
10년 전 조회 1,132
10년 전 조회 1,156
10년 전 조회 1,173
10년 전 조회 1,147
10년 전 조회 1,202
10년 전 조회 1,137
10년 전 조회 1,232
10년 전 조회 1,318
10년 전 조회 1,291
10년 전 조회 1,237
10년 전 조회 1,154
10년 전 조회 1,273
10년 전 조회 1,188
10년 전 조회 1,195
10년 전 조회 1,161
10년 전 조회 1,130
10년 전 조회 1,134
10년 전 조회 1,151
10년 전 조회 1,248
10년 전 조회 1,189
10년 전 조회 1,271
10년 전 조회 1,171
10년 전 조회 1,198
10년 전 조회 1,189
10년 전 조회 1,242
10년 전 조회 1,338
10년 전 조회 1,419
10년 전 조회 1,215
10년 전 조회 1,275
10년 전 조회 1,163
10년 전 조회 1,079
10년 전 조회 1,137
10년 전 조회 1,272
10년 전 조회 1,169
10년 전 조회 1,189
10년 전 조회 1,179
10년 전 조회 1,315
10년 전 조회 1,296
10년 전 조회 1,808
10년 전 조회 1,197
10년 전 조회 1,306
10년 전 조회 1,192
10년 전 조회 1,528
10년 전 조회 1,234
10년 전 조회 1,226
10년 전 조회 1,147
10년 전 조회 1,137
10년 전 조회 1,442
10년 전 조회 1,345
10년 전 조회 1,138
10년 전 조회 1,273
10년 전 조회 1,423
10년 전 조회 1,125
10년 전 조회 1,190
10년 전 조회 1,144
10년 전 조회 1,610
10년 전 조회 1,304
10년 전 조회 1,326
10년 전 조회 1,244
10년 전 조회 1,361
10년 전 조회 1,568
10년 전 조회 1,439
10년 전 조회 1,397
10년 전 조회 1,340
10년 전 조회 1,375
10년 전 조회 1,351
10년 전 조회 1,297
10년 전 조회 1,770
10년 전 조회 1,286
10년 전 조회 1,280
10년 전 조회 1,500
10년 전 조회 1,301
10년 전 조회 1,343
10년 전 조회 1,177
10년 전 조회 1,441
10년 전 조회 1,262
10년 전 조회 1,190
10년 전 조회 1,254
10년 전 조회 1,913
10년 전 조회 1,276
10년 전 조회 1,275
10년 전 조회 1,283
10년 전 조회 1,391
10년 전 조회 1,863
10년 전 조회 1,456
10년 전 조회 1,286
10년 전 조회 1,208
10년 전 조회 1,242
10년 전 조회 1,347
10년 전 조회 1,255
10년 전 조회 1,328
10년 전 조회 1,232
10년 전 조회 1,417