COMING SOON 🚀

pushbullet 푸시 발송

· 10년 전 · 1485

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,186
10년 전 조회 1,144
10년 전 조회 1,226
10년 전 조회 1,151
10년 전 조회 1,099
10년 전 조회 1,075
10년 전 조회 1,084
10년 전 조회 1,068
10년 전 조회 1,099
10년 전 조회 1,128
10년 전 조회 1,086
10년 전 조회 1,147
10년 전 조회 1,081
10년 전 조회 1,190
10년 전 조회 1,272
10년 전 조회 1,242
10년 전 조회 1,177
10년 전 조회 1,103
10년 전 조회 1,223
10년 전 조회 1,127
10년 전 조회 1,161
10년 전 조회 1,103
10년 전 조회 1,084
10년 전 조회 1,086
10년 전 조회 1,109
10년 전 조회 1,202
10년 전 조회 1,151
10년 전 조회 1,237
10년 전 조회 1,123
10년 전 조회 1,154
10년 전 조회 1,144
10년 전 조회 1,194
10년 전 조회 1,299
10년 전 조회 1,378
10년 전 조회 1,174
10년 전 조회 1,240
10년 전 조회 1,128
10년 전 조회 1,047
10년 전 조회 1,096
10년 전 조회 1,234
10년 전 조회 1,126
10년 전 조회 1,145
10년 전 조회 1,134
10년 전 조회 1,271
10년 전 조회 1,258
10년 전 조회 1,770
10년 전 조회 1,163
10년 전 조회 1,267
10년 전 조회 1,154
10년 전 조회 1,486
10년 전 조회 1,200
10년 전 조회 1,184
10년 전 조회 1,113
10년 전 조회 1,106
10년 전 조회 1,402
10년 전 조회 1,293
10년 전 조회 1,104
10년 전 조회 1,219
10년 전 조회 1,374
10년 전 조회 1,090
10년 전 조회 1,152
10년 전 조회 1,109
10년 전 조회 1,566
10년 전 조회 1,266
10년 전 조회 1,294
10년 전 조회 1,207
10년 전 조회 1,332
10년 전 조회 1,536
10년 전 조회 1,416
10년 전 조회 1,350
10년 전 조회 1,307
10년 전 조회 1,335
10년 전 조회 1,309
10년 전 조회 1,259
10년 전 조회 1,723
10년 전 조회 1,240
10년 전 조회 1,240
10년 전 조회 1,461
10년 전 조회 1,261
10년 전 조회 1,296
10년 전 조회 1,130
10년 전 조회 1,394
10년 전 조회 1,223
10년 전 조회 1,147
10년 전 조회 1,202
10년 전 조회 1,881
10년 전 조회 1,223
10년 전 조회 1,231
10년 전 조회 1,231
10년 전 조회 1,349
10년 전 조회 1,828
10년 전 조회 1,415
10년 전 조회 1,240
10년 전 조회 1,175
10년 전 조회 1,210
10년 전 조회 1,304
10년 전 조회 1,208
10년 전 조회 1,286
10년 전 조회 1,198
10년 전 조회 1,369