COMING SOON 🚀

pushbullet 푸시 발송

· 10년 전 · 1486

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,145
10년 전 조회 1,227
10년 전 조회 1,155
10년 전 조회 1,100
10년 전 조회 1,078
10년 전 조회 1,087
10년 전 조회 1,071
10년 전 조회 1,103
10년 전 조회 1,130
10년 전 조회 1,087
10년 전 조회 1,148
10년 전 조회 1,084
10년 전 조회 1,190
10년 전 조회 1,273
10년 전 조회 1,243
10년 전 조회 1,181
10년 전 조회 1,105
10년 전 조회 1,227
10년 전 조회 1,133
10년 전 조회 1,164
10년 전 조회 1,105
10년 전 조회 1,085
10년 전 조회 1,086
10년 전 조회 1,109
10년 전 조회 1,203
10년 전 조회 1,151
10년 전 조회 1,241
10년 전 조회 1,128
10년 전 조회 1,155
10년 전 조회 1,148
10년 전 조회 1,196
10년 전 조회 1,300
10년 전 조회 1,382
10년 전 조회 1,176
10년 전 조회 1,242
10년 전 조회 1,130
10년 전 조회 1,047
10년 전 조회 1,099
10년 전 조회 1,234
10년 전 조회 1,128
10년 전 조회 1,145
10년 전 조회 1,136
10년 전 조회 1,271
10년 전 조회 1,258
10년 전 조회 1,773
10년 전 조회 1,164
10년 전 조회 1,267
10년 전 조회 1,158
10년 전 조회 1,487
10년 전 조회 1,205
10년 전 조회 1,188
10년 전 조회 1,114
10년 전 조회 1,107
10년 전 조회 1,404
10년 전 조회 1,296
10년 전 조회 1,104
10년 전 조회 1,221
10년 전 조회 1,375
10년 전 조회 1,091
10년 전 조회 1,153
10년 전 조회 1,109
10년 전 조회 1,568
10년 전 조회 1,268
10년 전 조회 1,296
10년 전 조회 1,207
10년 전 조회 1,333
10년 전 조회 1,537
10년 전 조회 1,417
10년 전 조회 1,352
10년 전 조회 1,308
10년 전 조회 1,335
10년 전 조회 1,311
10년 전 조회 1,259
10년 전 조회 1,724
10년 전 조회 1,241
10년 전 조회 1,242
10년 전 조회 1,462
10년 전 조회 1,261
10년 전 조회 1,297
10년 전 조회 1,133
10년 전 조회 1,395
10년 전 조회 1,227
10년 전 조회 1,147
10년 전 조회 1,204
10년 전 조회 1,882
10년 전 조회 1,223
10년 전 조회 1,233
10년 전 조회 1,234
10년 전 조회 1,350
10년 전 조회 1,830
10년 전 조회 1,418
10년 전 조회 1,241
10년 전 조회 1,178
10년 전 조회 1,213
10년 전 조회 1,308
10년 전 조회 1,211
10년 전 조회 1,287
10년 전 조회 1,199
10년 전 조회 1,370