pushbullet 푸시 발송

· 10년 전 · 1532

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,239
10년 전 조회 1,213
10년 전 조회 1,289
10년 전 조회 1,204
10년 전 조회 1,159
10년 전 조회 1,141
10년 전 조회 1,159
10년 전 조회 1,135
10년 전 조회 1,159
10년 전 조회 1,178
10년 전 조회 1,151
10년 전 조회 1,208
10년 전 조회 1,143
10년 전 조회 1,237
10년 전 조회 1,322
10년 전 조회 1,295
10년 전 조회 1,245
10년 전 조회 1,159
10년 전 조회 1,277
10년 전 조회 1,191
10년 전 조회 1,199
10년 전 조회 1,166
10년 전 조회 1,136
10년 전 조회 1,138
10년 전 조회 1,154
10년 전 조회 1,252
10년 전 조회 1,194
10년 전 조회 1,271
10년 전 조회 1,174
10년 전 조회 1,202
10년 전 조회 1,193
10년 전 조회 1,249
10년 전 조회 1,343
10년 전 조회 1,422
10년 전 조회 1,216
10년 전 조회 1,280
10년 전 조회 1,164
10년 전 조회 1,084
10년 전 조회 1,139
10년 전 조회 1,274
10년 전 조회 1,177
10년 전 조회 1,192
10년 전 조회 1,179
10년 전 조회 1,317
10년 전 조회 1,299
10년 전 조회 1,809
10년 전 조회 1,198
10년 전 조회 1,308
10년 전 조회 1,197
10년 전 조회 1,533
10년 전 조회 1,239
10년 전 조회 1,232
10년 전 조회 1,149
10년 전 조회 1,139
10년 전 조회 1,445
10년 전 조회 1,349
10년 전 조회 1,144
10년 전 조회 1,275
10년 전 조회 1,429
10년 전 조회 1,127
10년 전 조회 1,194
10년 전 조회 1,148
10년 전 조회 1,617
10년 전 조회 1,308
10년 전 조회 1,330
10년 전 조회 1,246
10년 전 조회 1,365
10년 전 조회 1,571
10년 전 조회 1,444
10년 전 조회 1,401
10년 전 조회 1,341
10년 전 조회 1,379
10년 전 조회 1,352
10년 전 조회 1,300
10년 전 조회 1,773
10년 전 조회 1,288
10년 전 조회 1,283
10년 전 조회 1,503
10년 전 조회 1,305
10년 전 조회 1,349
10년 전 조회 1,182
10년 전 조회 1,449
10년 전 조회 1,268
10년 전 조회 1,191
10년 전 조회 1,260
10년 전 조회 1,918
10년 전 조회 1,280
10년 전 조회 1,279
10년 전 조회 1,291
10년 전 조회 1,396
10년 전 조회 1,867
10년 전 조회 1,460
10년 전 조회 1,289
10년 전 조회 1,208
10년 전 조회 1,247
10년 전 조회 1,352
10년 전 조회 1,259
10년 전 조회 1,330
10년 전 조회 1,233
10년 전 조회 1,421