pushbullet 푸시 발송

· 10년 전 · 1571

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,290
10년 전 조회 1,266
10년 전 조회 1,347
10년 전 조회 1,255
10년 전 조회 1,206
10년 전 조회 1,193
10년 전 조회 1,203
10년 전 조회 1,197
10년 전 조회 1,214
10년 전 조회 1,221
10년 전 조회 1,188
10년 전 조회 1,252
10년 전 조회 1,188
10년 전 조회 1,284
10년 전 조회 1,365
10년 전 조회 1,341
10년 전 조회 1,282
10년 전 조회 1,199
10년 전 조회 1,331
10년 전 조회 1,219
10년 전 조회 1,257
10년 전 조회 1,216
10년 전 조회 1,178
10년 전 조회 1,180
10년 전 조회 1,201
10년 전 조회 1,288
10년 전 조회 1,226
10년 전 조회 1,313
10년 전 조회 1,220
10년 전 조회 1,258
10년 전 조회 1,248
10년 전 조회 1,291
10년 전 조회 1,387
10년 전 조회 1,460
10년 전 조회 1,257
10년 전 조회 1,327
10년 전 조회 1,206
10년 전 조회 1,130
10년 전 조회 1,181
10년 전 조회 1,320
10년 전 조회 1,218
10년 전 조회 1,231
10년 전 조회 1,216
10년 전 조회 1,360
10년 전 조회 1,348
10년 전 조회 1,853
10년 전 조회 1,235
10년 전 조회 1,353
10년 전 조회 1,235
10년 전 조회 1,572
10년 전 조회 1,276
10년 전 조회 1,279
10년 전 조회 1,186
10년 전 조회 1,186
10년 전 조회 1,488
10년 전 조회 1,391
10년 전 조회 1,195
10년 전 조회 1,314
10년 전 조회 1,468
10년 전 조회 1,167
10년 전 조회 1,228
10년 전 조회 1,181
10년 전 조회 1,660
10년 전 조회 1,348
10년 전 조회 1,374
10년 전 조회 1,284
10년 전 조회 1,394
10년 전 조회 1,610
10년 전 조회 1,492
10년 전 조회 1,434
10년 전 조회 1,376
10년 전 조회 1,413
10년 전 조회 1,389
10년 전 조회 1,338
10년 전 조회 1,805
10년 전 조회 1,325
10년 전 조회 1,317
10년 전 조회 1,544
10년 전 조회 1,332
10년 전 조회 1,381
10년 전 조회 1,208
10년 전 조회 1,489
10년 전 조회 1,310
10년 전 조회 1,223
10년 전 조회 1,303
10년 전 조회 1,951
10년 전 조회 1,316
10년 전 조회 1,305
10년 전 조회 1,336
10년 전 조회 1,431
10년 전 조회 1,897
10년 전 조회 1,491
10년 전 조회 1,325
10년 전 조회 1,242
10년 전 조회 1,275
10년 전 조회 1,387
10년 전 조회 1,301
10년 전 조회 1,370
10년 전 조회 1,269
10년 전 조회 1,447