pushbullet 푸시 발송

· 10년 전 · 1528

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,153
10년 전 조회 1,137
10년 전 조회 1,154
10년 전 조회 1,133
10년 전 조회 1,156
10년 전 조회 1,174
10년 전 조회 1,147
10년 전 조회 1,203
10년 전 조회 1,138
10년 전 조회 1,232
10년 전 조회 1,319
10년 전 조회 1,292
10년 전 조회 1,239
10년 전 조회 1,154
10년 전 조회 1,273
10년 전 조회 1,189
10년 전 조회 1,196
10년 전 조회 1,163
10년 전 조회 1,130
10년 전 조회 1,134
10년 전 조회 1,151
10년 전 조회 1,249
10년 전 조회 1,189
10년 전 조회 1,271
10년 전 조회 1,171
10년 전 조회 1,199
10년 전 조회 1,191
10년 전 조회 1,243
10년 전 조회 1,339
10년 전 조회 1,419
10년 전 조회 1,215
10년 전 조회 1,277
10년 전 조회 1,164
10년 전 조회 1,079
10년 전 조회 1,138
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,306
10년 전 조회 1,192
10년 전 조회 1,529
10년 전 조회 1,235
10년 전 조회 1,226
10년 전 조회 1,147
10년 전 조회 1,137
10년 전 조회 1,442
10년 전 조회 1,345
10년 전 조회 1,138
10년 전 조회 1,273
10년 전 조회 1,423
10년 전 조회 1,125
10년 전 조회 1,191
10년 전 조회 1,145
10년 전 조회 1,610
10년 전 조회 1,304
10년 전 조회 1,327
10년 전 조회 1,245
10년 전 조회 1,362
10년 전 조회 1,568
10년 전 조회 1,439
10년 전 조회 1,397
10년 전 조회 1,340
10년 전 조회 1,376
10년 전 조회 1,351
10년 전 조회 1,297
10년 전 조회 1,770
10년 전 조회 1,286
10년 전 조회 1,282
10년 전 조회 1,500
10년 전 조회 1,301
10년 전 조회 1,343
10년 전 조회 1,178
10년 전 조회 1,443
10년 전 조회 1,262
10년 전 조회 1,190
10년 전 조회 1,254
10년 전 조회 1,914
10년 전 조회 1,276
10년 전 조회 1,276
10년 전 조회 1,285
10년 전 조회 1,391
10년 전 조회 1,864
10년 전 조회 1,457
10년 전 조회 1,286
10년 전 조회 1,208
10년 전 조회 1,242
10년 전 조회 1,347
10년 전 조회 1,256
10년 전 조회 1,328
10년 전 조회 1,232
10년 전 조회 1,418