pushbullet 푸시 발송

· 10년 전 · 1586

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,299
10년 전 조회 1,283
10년 전 조회 1,359
10년 전 조회 1,268
10년 전 조회 1,223
10년 전 조회 1,209
10년 전 조회 1,220
10년 전 조회 1,218
10년 전 조회 1,232
10년 전 조회 1,247
10년 전 조회 1,205
10년 전 조회 1,264
10년 전 조회 1,201
10년 전 조회 1,299
10년 전 조회 1,386
10년 전 조회 1,358
10년 전 조회 1,298
10년 전 조회 1,214
10년 전 조회 1,345
10년 전 조회 1,230
10년 전 조회 1,268
10년 전 조회 1,232
10년 전 조회 1,192
10년 전 조회 1,192
10년 전 조회 1,215
10년 전 조회 1,300
10년 전 조회 1,239
10년 전 조회 1,328
10년 전 조회 1,235
10년 전 조회 1,271
10년 전 조회 1,257
10년 전 조회 1,304
10년 전 조회 1,402
10년 전 조회 1,475
10년 전 조회 1,273
10년 전 조회 1,340
10년 전 조회 1,221
10년 전 조회 1,151
10년 전 조회 1,197
10년 전 조회 1,328
10년 전 조회 1,231
10년 전 조회 1,245
10년 전 조회 1,231
10년 전 조회 1,378
10년 전 조회 1,360
10년 전 조회 1,862
10년 전 조회 1,250
10년 전 조회 1,363
10년 전 조회 1,253
10년 전 조회 1,587
10년 전 조회 1,289
10년 전 조회 1,297
10년 전 조회 1,204
10년 전 조회 1,197
10년 전 조회 1,497
10년 전 조회 1,411
10년 전 조회 1,201
10년 전 조회 1,323
10년 전 조회 1,481
10년 전 조회 1,174
10년 전 조회 1,237
10년 전 조회 1,194
10년 전 조회 1,673
10년 전 조회 1,359
10년 전 조회 1,383
10년 전 조회 1,295
10년 전 조회 1,409
10년 전 조회 1,618
10년 전 조회 1,500
10년 전 조회 1,440
10년 전 조회 1,393
10년 전 조회 1,420
10년 전 조회 1,401
10년 전 조회 1,350
10년 전 조회 1,820
10년 전 조회 1,334
10년 전 조회 1,326
10년 전 조회 1,555
10년 전 조회 1,347
10년 전 조회 1,389
10년 전 조회 1,217
10년 전 조회 1,496
10년 전 조회 1,316
10년 전 조회 1,230
10년 전 조회 1,317
10년 전 조회 1,960
10년 전 조회 1,328
10년 전 조회 1,315
10년 전 조회 1,351
10년 전 조회 1,434
10년 전 조회 1,909
10년 전 조회 1,501
10년 전 조회 1,342
10년 전 조회 1,252
10년 전 조회 1,285
10년 전 조회 1,399
10년 전 조회 1,314
10년 전 조회 1,382
10년 전 조회 1,284
10년 전 조회 1,461