pushbullet 푸시 발송

· 10년 전 · 1603

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,311
10년 전 조회 1,296
10년 전 조회 1,369
10년 전 조회 1,283
10년 전 조회 1,238
10년 전 조회 1,219
10년 전 조회 1,239
10년 전 조회 1,238
10년 전 조회 1,245
10년 전 조회 1,263
10년 전 조회 1,219
10년 전 조회 1,278
10년 전 조회 1,214
10년 전 조회 1,313
10년 전 조회 1,400
10년 전 조회 1,370
10년 전 조회 1,311
10년 전 조회 1,232
10년 전 조회 1,352
10년 전 조회 1,248
10년 전 조회 1,287
10년 전 조회 1,246
10년 전 조회 1,207
10년 전 조회 1,205
10년 전 조회 1,230
10년 전 조회 1,309
10년 전 조회 1,256
10년 전 조회 1,341
10년 전 조회 1,248
10년 전 조회 1,290
10년 전 조회 1,279
10년 전 조회 1,323
10년 전 조회 1,416
10년 전 조회 1,488
10년 전 조회 1,282
10년 전 조회 1,353
10년 전 조회 1,239
10년 전 조회 1,158
10년 전 조회 1,208
10년 전 조회 1,337
10년 전 조회 1,235
10년 전 조회 1,255
10년 전 조회 1,244
10년 전 조회 1,393
10년 전 조회 1,370
10년 전 조회 1,874
10년 전 조회 1,263
10년 전 조회 1,373
10년 전 조회 1,267
10년 전 조회 1,604
10년 전 조회 1,297
10년 전 조회 1,306
10년 전 조회 1,211
10년 전 조회 1,207
10년 전 조회 1,504
10년 전 조회 1,427
10년 전 조회 1,219
10년 전 조회 1,330
10년 전 조회 1,496
10년 전 조회 1,185
10년 전 조회 1,249
10년 전 조회 1,202
10년 전 조회 1,687
10년 전 조회 1,368
10년 전 조회 1,394
10년 전 조회 1,299
10년 전 조회 1,416
10년 전 조회 1,630
10년 전 조회 1,509
10년 전 조회 1,451
10년 전 조회 1,403
10년 전 조회 1,425
10년 전 조회 1,410
10년 전 조회 1,362
10년 전 조회 1,828
10년 전 조회 1,345
10년 전 조회 1,335
10년 전 조회 1,562
10년 전 조회 1,362
10년 전 조회 1,395
10년 전 조회 1,234
10년 전 조회 1,505
10년 전 조회 1,323
10년 전 조회 1,238
10년 전 조회 1,327
10년 전 조회 1,976
10년 전 조회 1,338
10년 전 조회 1,321
10년 전 조회 1,364
10년 전 조회 1,442
10년 전 조회 1,917
10년 전 조회 1,513
10년 전 조회 1,356
10년 전 조회 1,260
10년 전 조회 1,290
10년 전 조회 1,404
10년 전 조회 1,328
10년 전 조회 1,392
10년 전 조회 1,292
10년 전 조회 1,472