COMING SOON 🚀

pushbullet 푸시 발송

· 10년 전 · 1504

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,201
10년 전 조회 1,165
10년 전 조회 1,246
10년 전 조회 1,170
10년 전 조회 1,118
10년 전 조회 1,098
10년 전 조회 1,110
10년 전 조회 1,099
10년 전 조회 1,120
10년 전 조회 1,144
10년 전 조회 1,113
10년 전 조회 1,170
10년 전 조회 1,102
10년 전 조회 1,202
10년 전 조회 1,287
10년 전 조회 1,262
10년 전 조회 1,198
10년 전 조회 1,123
10년 전 조회 1,246
10년 전 조회 1,150
10년 전 조회 1,176
10년 전 조회 1,129
10년 전 조회 1,108
10년 전 조회 1,107
10년 전 조회 1,124
10년 전 조회 1,222
10년 전 조회 1,161
10년 전 조회 1,250
10년 전 조회 1,144
10년 전 조회 1,170
10년 전 조회 1,161
10년 전 조회 1,218
10년 전 조회 1,317
10년 전 조회 1,395
10년 전 조회 1,190
10년 전 조회 1,260
10년 전 조회 1,146
10년 전 조회 1,060
10년 전 조회 1,115
10년 전 조회 1,251
10년 전 조회 1,147
10년 전 조회 1,168
10년 전 조회 1,158
10년 전 조회 1,289
10년 전 조회 1,277
10년 전 조회 1,787
10년 전 조회 1,173
10년 전 조회 1,286
10년 전 조회 1,168
10년 전 조회 1,505
10년 전 조회 1,214
10년 전 조회 1,205
10년 전 조회 1,130
10년 전 조회 1,119
10년 전 조회 1,418
10년 전 조회 1,315
10년 전 조회 1,118
10년 전 조회 1,243
10년 전 조회 1,392
10년 전 조회 1,105
10년 전 조회 1,169
10년 전 조회 1,121
10년 전 조회 1,582
10년 전 조회 1,281
10년 전 조회 1,307
10년 전 조회 1,218
10년 전 조회 1,343
10년 전 조회 1,552
10년 전 조회 1,423
10년 전 조회 1,366
10년 전 조회 1,319
10년 전 조회 1,354
10년 전 조회 1,330
10년 전 조회 1,278
10년 전 조회 1,747
10년 전 조회 1,261
10년 전 조회 1,258
10년 전 조회 1,477
10년 전 조회 1,280
10년 전 조회 1,312
10년 전 조회 1,149
10년 전 조회 1,413
10년 전 조회 1,242
10년 전 조회 1,169
10년 전 조회 1,225
10년 전 조회 1,896
10년 전 조회 1,243
10년 전 조회 1,250
10년 전 조회 1,260
10년 전 조회 1,365
10년 전 조회 1,846
10년 전 조회 1,433
10년 전 조회 1,257
10년 전 조회 1,192
10년 전 조회 1,227
10년 전 조회 1,322
10년 전 조회 1,229
10년 전 조회 1,305
10년 전 조회 1,215
10년 전 조회 1,389