COMING SOON 🚀

pushbullet 푸시 발송

· 10년 전 · 1484

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,184
10년 전 조회 1,142
10년 전 조회 1,224
10년 전 조회 1,151
10년 전 조회 1,097
10년 전 조회 1,074
10년 전 조회 1,082
10년 전 조회 1,067
10년 전 조회 1,097
10년 전 조회 1,126
10년 전 조회 1,084
10년 전 조회 1,146
10년 전 조회 1,077
10년 전 조회 1,190
10년 전 조회 1,272
10년 전 조회 1,239
10년 전 조회 1,177
10년 전 조회 1,102
10년 전 조회 1,220
10년 전 조회 1,126
10년 전 조회 1,159
10년 전 조회 1,101
10년 전 조회 1,083
10년 전 조회 1,083
10년 전 조회 1,106
10년 전 조회 1,200
10년 전 조회 1,150
10년 전 조회 1,237
10년 전 조회 1,122
10년 전 조회 1,151
10년 전 조회 1,143
10년 전 조회 1,193
10년 전 조회 1,298
10년 전 조회 1,375
10년 전 조회 1,172
10년 전 조회 1,238
10년 전 조회 1,125
10년 전 조회 1,046
10년 전 조회 1,095
10년 전 조회 1,231
10년 전 조회 1,122
10년 전 조회 1,143
10년 전 조회 1,132
10년 전 조회 1,269
10년 전 조회 1,257
10년 전 조회 1,768
10년 전 조회 1,162
10년 전 조회 1,265
10년 전 조회 1,153
10년 전 조회 1,485
10년 전 조회 1,199
10년 전 조회 1,184
10년 전 조회 1,112
10년 전 조회 1,105
10년 전 조회 1,401
10년 전 조회 1,292
10년 전 조회 1,103
10년 전 조회 1,217
10년 전 조회 1,374
10년 전 조회 1,086
10년 전 조회 1,150
10년 전 조회 1,106
10년 전 조회 1,565
10년 전 조회 1,264
10년 전 조회 1,292
10년 전 조회 1,206
10년 전 조회 1,329
10년 전 조회 1,533
10년 전 조회 1,414
10년 전 조회 1,350
10년 전 조회 1,304
10년 전 조회 1,333
10년 전 조회 1,307
10년 전 조회 1,257
10년 전 조회 1,721
10년 전 조회 1,237
10년 전 조회 1,239
10년 전 조회 1,459
10년 전 조회 1,261
10년 전 조회 1,295
10년 전 조회 1,128
10년 전 조회 1,393
10년 전 조회 1,220
10년 전 조회 1,146
10년 전 조회 1,202
10년 전 조회 1,881
10년 전 조회 1,221
10년 전 조회 1,229
10년 전 조회 1,228
10년 전 조회 1,344
10년 전 조회 1,826
10년 전 조회 1,413
10년 전 조회 1,236
10년 전 조회 1,174
10년 전 조회 1,209
10년 전 조회 1,301
10년 전 조회 1,205
10년 전 조회 1,285
10년 전 조회 1,196
10년 전 조회 1,368