pushbullet 푸시 발송

· 10년 전 · 1652

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,369
10년 전 조회 1,344
10년 전 조회 1,431
10년 전 조회 1,343
10년 전 조회 1,292
10년 전 조회 1,270
10년 전 조회 1,292
10년 전 조회 1,304
10년 전 조회 1,305
10년 전 조회 1,322
10년 전 조회 1,267
10년 전 조회 1,328
10년 전 조회 1,264
10년 전 조회 1,368
10년 전 조회 1,454
10년 전 조회 1,425
10년 전 조회 1,358
10년 전 조회 1,272
10년 전 조회 1,399
10년 전 조회 1,297
10년 전 조회 1,347
10년 전 조회 1,293
10년 전 조회 1,261
10년 전 조회 1,251
10년 전 조회 1,283
10년 전 조회 1,360
10년 전 조회 1,302
10년 전 조회 1,387
10년 전 조회 1,301
10년 전 조회 1,344
10년 전 조회 1,324
10년 전 조회 1,388
10년 전 조회 1,466
10년 전 조회 1,532
10년 전 조회 1,328
10년 전 조회 1,387
10년 전 조회 1,282
10년 전 조회 1,202
10년 전 조회 1,248
10년 전 조회 1,381
10년 전 조회 1,295
10년 전 조회 1,301
10년 전 조회 1,287
10년 전 조회 1,450
10년 전 조회 1,407
10년 전 조회 1,918
10년 전 조회 1,311
10년 전 조회 1,430
10년 전 조회 1,318
10년 전 조회 1,653
10년 전 조회 1,346
10년 전 조회 1,358
10년 전 조회 1,261
10년 전 조회 1,262
10년 전 조회 1,564
10년 전 조회 1,462
10년 전 조회 1,270
10년 전 조회 1,381
10년 전 조회 1,535
10년 전 조회 1,240
10년 전 조회 1,293
10년 전 조회 1,244
10년 전 조회 1,733
10년 전 조회 1,402
10년 전 조회 1,444
10년 전 조회 1,346
10년 전 조회 1,458
10년 전 조회 1,678
10년 전 조회 1,542
10년 전 조회 1,486
10년 전 조회 1,437
10년 전 조회 1,467
10년 전 조회 1,454
10년 전 조회 1,401
10년 전 조회 1,867
10년 전 조회 1,389
10년 전 조회 1,370
10년 전 조회 1,607
10년 전 조회 1,404
10년 전 조회 1,429
10년 전 조회 1,279
10년 전 조회 1,552
10년 전 조회 1,361
10년 전 조회 1,274
10년 전 조회 1,385
10년 전 조회 2,019
10년 전 조회 1,380
10년 전 조회 1,361
10년 전 조회 1,410
10년 전 조회 1,484
10년 전 조회 1,954
10년 전 조회 1,555
10년 전 조회 1,399
10년 전 조회 1,299
10년 전 조회 1,327
10년 전 조회 1,436
10년 전 조회 1,364
10년 전 조회 1,435
10년 전 조회 1,334
10년 전 조회 1,502