pushbullet 푸시 발송

· 10년 전 · 1529

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,236
10년 전 조회 1,209
10년 전 조회 1,282
10년 전 조회 1,200
10년 전 조회 1,154
10년 전 조회 1,137
10년 전 조회 1,154
10년 전 조회 1,133
10년 전 조회 1,156
10년 전 조회 1,174
10년 전 조회 1,147
10년 전 조회 1,204
10년 전 조회 1,138
10년 전 조회 1,233
10년 전 조회 1,319
10년 전 조회 1,292
10년 전 조회 1,241
10년 전 조회 1,154
10년 전 조회 1,273
10년 전 조회 1,189
10년 전 조회 1,197
10년 전 조회 1,164
10년 전 조회 1,130
10년 전 조회 1,135
10년 전 조회 1,152
10년 전 조회 1,249
10년 전 조회 1,190
10년 전 조회 1,271
10년 전 조회 1,171
10년 전 조회 1,199
10년 전 조회 1,192
10년 전 조회 1,244
10년 전 조회 1,339
10년 전 조회 1,420
10년 전 조회 1,215
10년 전 조회 1,277
10년 전 조회 1,164
10년 전 조회 1,079
10년 전 조회 1,139
10년 전 조회 1,273
10년 전 조회 1,169
10년 전 조회 1,190
10년 전 조회 1,179
10년 전 조회 1,315
10년 전 조회 1,296
10년 전 조회 1,808
10년 전 조회 1,198
10년 전 조회 1,307
10년 전 조회 1,193
10년 전 조회 1,530
10년 전 조회 1,235
10년 전 조회 1,227
10년 전 조회 1,147
10년 전 조회 1,137
10년 전 조회 1,442
10년 전 조회 1,347
10년 전 조회 1,138
10년 전 조회 1,273
10년 전 조회 1,425
10년 전 조회 1,125
10년 전 조회 1,192
10년 전 조회 1,145
10년 전 조회 1,610
10년 전 조회 1,305
10년 전 조회 1,327
10년 전 조회 1,245
10년 전 조회 1,362
10년 전 조회 1,568
10년 전 조회 1,440
10년 전 조회 1,398
10년 전 조회 1,341
10년 전 조회 1,376
10년 전 조회 1,351
10년 전 조회 1,298
10년 전 조회 1,770
10년 전 조회 1,287
10년 전 조회 1,282
10년 전 조회 1,501
10년 전 조회 1,302
10년 전 조회 1,346
10년 전 조회 1,178
10년 전 조회 1,445
10년 전 조회 1,264
10년 전 조회 1,191
10년 전 조회 1,255
10년 전 조회 1,915
10년 전 조회 1,277
10년 전 조회 1,277
10년 전 조회 1,285
10년 전 조회 1,393
10년 전 조회 1,864
10년 전 조회 1,458
10년 전 조회 1,286
10년 전 조회 1,208
10년 전 조회 1,244
10년 전 조회 1,348
10년 전 조회 1,257
10년 전 조회 1,328
10년 전 조회 1,232
10년 전 조회 1,419