COMING SOON 🚀

pushbullet 푸시 발송

· 10년 전 · 1507

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,209
10년 전 조회 1,170
10년 전 조회 1,251
10년 전 조회 1,175
10년 전 조회 1,123
10년 전 조회 1,104
10년 전 조회 1,117
10년 전 조회 1,103
10년 전 조회 1,124
10년 전 조회 1,155
10년 전 조회 1,118
10년 전 조회 1,174
10년 전 조회 1,108
10년 전 조회 1,206
10년 전 조회 1,293
10년 전 조회 1,266
10년 전 조회 1,207
10년 전 조회 1,128
10년 전 조회 1,247
10년 전 조회 1,157
10년 전 조회 1,181
10년 전 조회 1,133
10년 전 조회 1,113
10년 전 조회 1,110
10년 전 조회 1,131
10년 전 조회 1,226
10년 전 조회 1,166
10년 전 조회 1,254
10년 전 조회 1,146
10년 전 조회 1,178
10년 전 조회 1,164
10년 전 조회 1,225
10년 전 조회 1,321
10년 전 조회 1,400
10년 전 조회 1,196
10년 전 조회 1,260
10년 전 조회 1,149
10년 전 조회 1,065
10년 전 조회 1,117
10년 전 조회 1,255
10년 전 조회 1,151
10년 전 조회 1,170
10년 전 조회 1,159
10년 전 조회 1,290
10년 전 조회 1,282
10년 전 조회 1,790
10년 전 조회 1,176
10년 전 조회 1,290
10년 전 조회 1,173
10년 전 조회 1,508
10년 전 조회 1,216
10년 전 조회 1,210
10년 전 조회 1,131
10년 전 조회 1,120
10년 전 조회 1,423
10년 전 조회 1,321
10년 전 조회 1,121
10년 전 조회 1,253
10년 전 조회 1,399
10년 전 조회 1,110
10년 전 조회 1,172
10년 전 조회 1,127
10년 전 조회 1,586
10년 전 조회 1,287
10년 전 조회 1,312
10년 전 조회 1,224
10년 전 조회 1,348
10년 전 조회 1,554
10년 전 조회 1,427
10년 전 조회 1,372
10년 전 조회 1,323
10년 전 조회 1,354
10년 전 조회 1,334
10년 전 조회 1,282
10년 전 조회 1,754
10년 전 조회 1,265
10년 전 조회 1,262
10년 전 조회 1,480
10년 전 조회 1,285
10년 전 조회 1,315
10년 전 조회 1,153
10년 전 조회 1,418
10년 전 조회 1,249
10년 전 조회 1,174
10년 전 조회 1,228
10년 전 조회 1,899
10년 전 조회 1,249
10년 전 조회 1,254
10년 전 조회 1,263
10년 전 조회 1,369
10년 전 조회 1,848
10년 전 조회 1,436
10년 전 조회 1,262
10년 전 조회 1,194
10년 전 조회 1,227
10년 전 조회 1,328
10년 전 조회 1,231
10년 전 조회 1,306
10년 전 조회 1,217
10년 전 조회 1,395