pushbullet 푸시 발송

· 10년 전 · 1648

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,366
10년 전 조회 1,344
10년 전 조회 1,430
10년 전 조회 1,342
10년 전 조회 1,290
10년 전 조회 1,270
10년 전 조회 1,290
10년 전 조회 1,302
10년 전 조회 1,305
10년 전 조회 1,322
10년 전 조회 1,267
10년 전 조회 1,328
10년 전 조회 1,261
10년 전 조회 1,368
10년 전 조회 1,452
10년 전 조회 1,422
10년 전 조회 1,356
10년 전 조회 1,272
10년 전 조회 1,398
10년 전 조회 1,295
10년 전 조회 1,346
10년 전 조회 1,292
10년 전 조회 1,259
10년 전 조회 1,248
10년 전 조회 1,283
10년 전 조회 1,358
10년 전 조회 1,300
10년 전 조회 1,385
10년 전 조회 1,298
10년 전 조회 1,344
10년 전 조회 1,321
10년 전 조회 1,387
10년 전 조회 1,465
10년 전 조회 1,529
10년 전 조회 1,327
10년 전 조회 1,386
10년 전 조회 1,282
10년 전 조회 1,202
10년 전 조회 1,248
10년 전 조회 1,377
10년 전 조회 1,295
10년 전 조회 1,299
10년 전 조회 1,283
10년 전 조회 1,446
10년 전 조회 1,405
10년 전 조회 1,915
10년 전 조회 1,311
10년 전 조회 1,428
10년 전 조회 1,316
10년 전 조회 1,649
10년 전 조회 1,344
10년 전 조회 1,355
10년 전 조회 1,258
10년 전 조회 1,259
10년 전 조회 1,562
10년 전 조회 1,461
10년 전 조회 1,270
10년 전 조회 1,377
10년 전 조회 1,534
10년 전 조회 1,239
10년 전 조회 1,291
10년 전 조회 1,243
10년 전 조회 1,732
10년 전 조회 1,401
10년 전 조회 1,440
10년 전 조회 1,344
10년 전 조회 1,457
10년 전 조회 1,676
10년 전 조회 1,542
10년 전 조회 1,485
10년 전 조회 1,436
10년 전 조회 1,464
10년 전 조회 1,453
10년 전 조회 1,399
10년 전 조회 1,867
10년 전 조회 1,387
10년 전 조회 1,370
10년 전 조회 1,606
10년 전 조회 1,403
10년 전 조회 1,428
10년 전 조회 1,278
10년 전 조회 1,550
10년 전 조회 1,360
10년 전 조회 1,273
10년 전 조회 1,384
10년 전 조회 2,017
10년 전 조회 1,380
10년 전 조회 1,361
10년 전 조회 1,408
10년 전 조회 1,482
10년 전 조회 1,952
10년 전 조회 1,554
10년 전 조회 1,399
10년 전 조회 1,298
10년 전 조회 1,326
10년 전 조회 1,436
10년 전 조회 1,364
10년 전 조회 1,432
10년 전 조회 1,331
10년 전 조회 1,502