COMING SOON 🚀

pushbullet 푸시 발송

· 10년 전 · 1513

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,215
10년 전 조회 1,182
10년 전 조회 1,258
10년 전 조회 1,182
10년 전 조회 1,131
10년 전 조회 1,111
10년 전 조회 1,130
10년 전 조회 1,112
10년 전 조회 1,136
10년 전 조회 1,158
10년 전 조회 1,125
10년 전 조회 1,178
10년 전 조회 1,116
10년 전 조회 1,212
10년 전 조회 1,304
10년 전 조회 1,271
10년 전 조회 1,214
10년 전 조회 1,139
10년 전 조회 1,249
10년 전 조회 1,167
10년 전 조회 1,186
10년 전 조회 1,141
10년 전 조회 1,120
10년 전 조회 1,120
10년 전 조회 1,141
10년 전 조회 1,232
10년 전 조회 1,179
10년 전 조회 1,257
10년 전 조회 1,151
10년 전 조회 1,187
10년 전 조회 1,171
10년 전 조회 1,232
10년 전 조회 1,325
10년 전 조회 1,407
10년 전 조회 1,202
10년 전 조회 1,265
10년 전 조회 1,151
10년 전 조회 1,068
10년 전 조회 1,123
10년 전 조회 1,262
10년 전 조회 1,157
10년 전 조회 1,178
10년 전 조회 1,162
10년 전 조회 1,294
10년 전 조회 1,288
10년 전 조회 1,793
10년 전 조회 1,178
10년 전 조회 1,295
10년 전 조회 1,177
10년 전 조회 1,514
10년 전 조회 1,224
10년 전 조회 1,217
10년 전 조회 1,133
10년 전 조회 1,128
10년 전 조회 1,431
10년 전 조회 1,328
10년 전 조회 1,126
10년 전 조회 1,261
10년 전 조회 1,405
10년 전 조회 1,115
10년 전 조회 1,176
10년 전 조회 1,132
10년 전 조회 1,594
10년 전 조회 1,290
10년 전 조회 1,321
10년 전 조회 1,229
10년 전 조회 1,350
10년 전 조회 1,560
10년 전 조회 1,428
10년 전 조회 1,383
10년 전 조회 1,328
10년 전 조회 1,360
10년 전 조회 1,336
10년 전 조회 1,284
10년 전 조회 1,761
10년 전 조회 1,273
10년 전 조회 1,268
10년 전 조회 1,488
10년 전 조회 1,289
10년 전 조회 1,323
10년 전 조회 1,158
10년 전 조회 1,424
10년 전 조회 1,252
10년 전 조회 1,177
10년 전 조회 1,239
10년 전 조회 1,902
10년 전 조회 1,259
10년 전 조회 1,256
10년 전 조회 1,269
10년 전 조회 1,377
10년 전 조회 1,853
10년 전 조회 1,443
10년 전 조회 1,269
10년 전 조회 1,196
10년 전 조회 1,230
10년 전 조회 1,335
10년 전 조회 1,239
10년 전 조회 1,309
10년 전 조회 1,220
10년 전 조회 1,405