pushbullet 푸시 발송

· 10년 전 · 1640

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,362
10년 전 조회 1,335
10년 전 조회 1,423
10년 전 조회 1,331
10년 전 조회 1,281
10년 전 조회 1,264
10년 전 조회 1,283
10년 전 조회 1,290
10년 전 조회 1,291
10년 전 조회 1,312
10년 전 조회 1,260
10년 전 조회 1,321
10년 전 조회 1,250
10년 전 조회 1,359
10년 전 조회 1,441
10년 전 조회 1,415
10년 전 조회 1,353
10년 전 조회 1,265
10년 전 조회 1,392
10년 전 조회 1,291
10년 전 조회 1,336
10년 전 조회 1,280
10년 전 조회 1,248
10년 전 조회 1,239
10년 전 조회 1,275
10년 전 조회 1,344
10년 전 조회 1,295
10년 전 조회 1,381
10년 전 조회 1,291
10년 전 조회 1,335
10년 전 조회 1,310
10년 전 조회 1,374
10년 전 조회 1,452
10년 전 조회 1,520
10년 전 조회 1,314
10년 전 조회 1,378
10년 전 조회 1,278
10년 전 조회 1,193
10년 전 조회 1,245
10년 전 조회 1,366
10년 전 조회 1,286
10년 전 조회 1,293
10년 전 조회 1,271
10년 전 조회 1,433
10년 전 조회 1,397
10년 전 조회 1,903
10년 전 조회 1,296
10년 전 조회 1,415
10년 전 조회 1,303
10년 전 조회 1,641
10년 전 조회 1,338
10년 전 조회 1,344
10년 전 조회 1,246
10년 전 조회 1,249
10년 전 조회 1,558
10년 전 조회 1,453
10년 전 조회 1,263
10년 전 조회 1,366
10년 전 조회 1,528
10년 전 조회 1,225
10년 전 조회 1,286
10년 전 조회 1,233
10년 전 조회 1,721
10년 전 조회 1,395
10년 전 조회 1,425
10년 전 조회 1,331
10년 전 조회 1,445
10년 전 조회 1,662
10년 전 조회 1,538
10년 전 조회 1,475
10년 전 조회 1,429
10년 전 조회 1,458
10년 전 조회 1,440
10년 전 조회 1,391
10년 전 조회 1,859
10년 전 조회 1,379
10년 전 조회 1,362
10년 전 조회 1,602
10년 전 조회 1,391
10년 전 조회 1,419
10년 전 조회 1,270
10년 전 조회 1,542
10년 전 조회 1,353
10년 전 조회 1,263
10년 전 조회 1,373
10년 전 조회 2,005
10년 전 조회 1,367
10년 전 조회 1,348
10년 전 조회 1,401
10년 전 조회 1,472
10년 전 조회 1,945
10년 전 조회 1,541
10년 전 조회 1,390
10년 전 조회 1,286
10년 전 조회 1,318
10년 전 조회 1,430
10년 전 조회 1,357
10년 전 조회 1,423
10년 전 조회 1,318
10년 전 조회 1,492