pushbullet 푸시 발송

· 10년 전 · 1633

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,348
10년 전 조회 1,328
10년 전 조회 1,416
10년 전 조회 1,318
10년 전 조회 1,276
10년 전 조회 1,255
10년 전 조회 1,274
10년 전 조회 1,281
10년 전 조회 1,283
10년 전 조회 1,306
10년 전 조회 1,252
10년 전 조회 1,316
10년 전 조회 1,243
10년 전 조회 1,347
10년 전 조회 1,434
10년 전 조회 1,410
10년 전 조회 1,337
10년 전 조회 1,257
10년 전 조회 1,388
10년 전 조회 1,284
10년 전 조회 1,330
10년 전 조회 1,274
10년 전 조회 1,244
10년 전 조회 1,233
10년 전 조회 1,269
10년 전 조회 1,338
10년 전 조회 1,289
10년 전 조회 1,374
10년 전 조회 1,281
10년 전 조회 1,329
10년 전 조회 1,303
10년 전 조회 1,366
10년 전 조회 1,450
10년 전 조회 1,514
10년 전 조회 1,309
10년 전 조회 1,373
10년 전 조회 1,266
10년 전 조회 1,185
10년 전 조회 1,239
10년 전 조회 1,361
10년 전 조회 1,279
10년 전 조회 1,290
10년 전 조회 1,267
10년 전 조회 1,425
10년 전 조회 1,390
10년 전 조회 1,895
10년 전 조회 1,289
10년 전 조회 1,409
10년 전 조회 1,298
10년 전 조회 1,634
10년 전 조회 1,330
10년 전 조회 1,337
10년 전 조회 1,236
10년 전 조회 1,245
10년 전 조회 1,552
10년 전 조회 1,449
10년 전 조회 1,257
10년 전 조회 1,357
10년 전 조회 1,519
10년 전 조회 1,221
10년 전 조회 1,278
10년 전 조회 1,229
10년 전 조회 1,715
10년 전 조회 1,393
10년 전 조회 1,419
10년 전 조회 1,328
10년 전 조회 1,442
10년 전 조회 1,658
10년 전 조회 1,536
10년 전 조회 1,472
10년 전 조회 1,427
10년 전 조회 1,452
10년 전 조회 1,433
10년 전 조회 1,388
10년 전 조회 1,853
10년 전 조회 1,371
10년 전 조회 1,357
10년 전 조회 1,601
10년 전 조회 1,386
10년 전 조회 1,411
10년 전 조회 1,262
10년 전 조회 1,535
10년 전 조회 1,349
10년 전 조회 1,257
10년 전 조회 1,361
10년 전 조회 2,001
10년 전 조회 1,366
10년 전 조회 1,342
10년 전 조회 1,398
10년 전 조회 1,465
10년 전 조회 1,941
10년 전 조회 1,537
10년 전 조회 1,383
10년 전 조회 1,277
10년 전 조회 1,311
10년 전 조회 1,421
10년 전 조회 1,353
10년 전 조회 1,415
10년 전 조회 1,312
10년 전 조회 1,488