pushbullet 푸시 발송

· 10년 전 · 1559

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,279
10년 전 조회 1,260
10년 전 조회 1,337
10년 전 조회 1,251
10년 전 조회 1,201
10년 전 조회 1,187
10년 전 조회 1,191
10년 전 조회 1,183
10년 전 조회 1,202
10년 전 조회 1,213
10년 전 조회 1,175
10년 전 조회 1,247
10년 전 조회 1,183
10년 전 조회 1,274
10년 전 조회 1,355
10년 전 조회 1,336
10년 전 조회 1,278
10년 전 조회 1,191
10년 전 조회 1,321
10년 전 조회 1,213
10년 전 조회 1,244
10년 전 조회 1,205
10년 전 조회 1,170
10년 전 조회 1,175
10년 전 조회 1,192
10년 전 조회 1,280
10년 전 조회 1,219
10년 전 조회 1,304
10년 전 조회 1,208
10년 전 조회 1,242
10년 전 조회 1,237
10년 전 조회 1,280
10년 전 조회 1,381
10년 전 조회 1,456
10년 전 조회 1,254
10년 전 조회 1,322
10년 전 조회 1,197
10년 전 조회 1,123
10년 전 조회 1,177
10년 전 조회 1,315
10년 전 조회 1,208
10년 전 조회 1,225
10년 전 조회 1,212
10년 전 조회 1,356
10년 전 조회 1,343
10년 전 조회 1,849
10년 전 조회 1,230
10년 전 조회 1,349
10년 전 조회 1,228
10년 전 조회 1,560
10년 전 조회 1,270
10년 전 조회 1,272
10년 전 조회 1,182
10년 전 조회 1,175
10년 전 조회 1,478
10년 전 조회 1,384
10년 전 조회 1,183
10년 전 조회 1,309
10년 전 조회 1,463
10년 전 조회 1,161
10년 전 조회 1,214
10년 전 조회 1,175
10년 전 조회 1,652
10년 전 조회 1,340
10년 전 조회 1,368
10년 전 조회 1,273
10년 전 조회 1,385
10년 전 조회 1,603
10년 전 조회 1,486
10년 전 조회 1,426
10년 전 조회 1,367
10년 전 조회 1,405
10년 전 조회 1,384
10년 전 조회 1,330
10년 전 조회 1,798
10년 전 조회 1,316
10년 전 조회 1,308
10년 전 조회 1,535
10년 전 조회 1,327
10년 전 조회 1,376
10년 전 조회 1,201
10년 전 조회 1,484
10년 전 조회 1,304
10년 전 조회 1,220
10년 전 조회 1,298
10년 전 조회 1,942
10년 전 조회 1,311
10년 전 조회 1,299
10년 전 조회 1,329
10년 전 조회 1,426
10년 전 조회 1,892
10년 전 조회 1,486
10년 전 조회 1,320
10년 전 조회 1,237
10년 전 조회 1,273
10년 전 조회 1,375
10년 전 조회 1,294
10년 전 조회 1,362
10년 전 조회 1,263
10년 전 조회 1,442