pushbullet 푸시 발송

· 10년 전 · 1589

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,302
10년 전 조회 1,285
10년 전 조회 1,359
10년 전 조회 1,270
10년 전 조회 1,223
10년 전 조회 1,212
10년 전 조회 1,220
10년 전 조회 1,221
10년 전 조회 1,235
10년 전 조회 1,249
10년 전 조회 1,208
10년 전 조회 1,266
10년 전 조회 1,203
10년 전 조회 1,300
10년 전 조회 1,386
10년 전 조회 1,359
10년 전 조회 1,300
10년 전 조회 1,217
10년 전 조회 1,346
10년 전 조회 1,231
10년 전 조회 1,271
10년 전 조회 1,234
10년 전 조회 1,192
10년 전 조회 1,196
10년 전 조회 1,218
10년 전 조회 1,300
10년 전 조회 1,241
10년 전 조회 1,329
10년 전 조회 1,237
10년 전 조회 1,273
10년 전 조회 1,261
10년 전 조회 1,306
10년 전 조회 1,403
10년 전 조회 1,477
10년 전 조회 1,274
10년 전 조회 1,343
10년 전 조회 1,224
10년 전 조회 1,151
10년 전 조회 1,197
10년 전 조회 1,328
10년 전 조회 1,231
10년 전 조회 1,246
10년 전 조회 1,234
10년 전 조회 1,382
10년 전 조회 1,362
10년 전 조회 1,862
10년 전 조회 1,253
10년 전 조회 1,363
10년 전 조회 1,256
10년 전 조회 1,590
10년 전 조회 1,290
10년 전 조회 1,297
10년 전 조회 1,205
10년 전 조회 1,198
10년 전 조회 1,498
10년 전 조회 1,413
10년 전 조회 1,204
10년 전 조회 1,325
10년 전 조회 1,482
10년 전 조회 1,175
10년 전 조회 1,238
10년 전 조회 1,195
10년 전 조회 1,675
10년 전 조회 1,360
10년 전 조회 1,385
10년 전 조회 1,296
10년 전 조회 1,409
10년 전 조회 1,620
10년 전 조회 1,501
10년 전 조회 1,442
10년 전 조회 1,393
10년 전 조회 1,420
10년 전 조회 1,403
10년 전 조회 1,350
10년 전 조회 1,821
10년 전 조회 1,334
10년 전 조회 1,328
10년 전 조회 1,556
10년 전 조회 1,348
10년 전 조회 1,391
10년 전 조회 1,217
10년 전 조회 1,496
10년 전 조회 1,318
10년 전 조회 1,231
10년 전 조회 1,319
10년 전 조회 1,960
10년 전 조회 1,330
10년 전 조회 1,315
10년 전 조회 1,351
10년 전 조회 1,434
10년 전 조회 1,910
10년 전 조회 1,502
10년 전 조회 1,343
10년 전 조회 1,252
10년 전 조회 1,286
10년 전 조회 1,399
10년 전 조회 1,316
10년 전 조회 1,382
10년 전 조회 1,284
10년 전 조회 1,462