pushbullet 푸시 발송

· 10년 전 · 1657

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,372
10년 전 조회 1,346
10년 전 조회 1,435
10년 전 조회 1,344
10년 전 조회 1,300
10년 전 조회 1,274
10년 전 조회 1,297
10년 전 조회 1,308
10년 전 조회 1,305
10년 전 조회 1,328
10년 전 조회 1,272
10년 전 조회 1,330
10년 전 조회 1,271
10년 전 조회 1,373
10년 전 조회 1,458
10년 전 조회 1,428
10년 전 조회 1,360
10년 전 조회 1,274
10년 전 조회 1,402
10년 전 조회 1,303
10년 전 조회 1,350
10년 전 조회 1,299
10년 전 조회 1,263
10년 전 조회 1,254
10년 전 조회 1,284
10년 전 조회 1,366
10년 전 조회 1,305
10년 전 조회 1,389
10년 전 조회 1,304
10년 전 조회 1,346
10년 전 조회 1,326
10년 전 조회 1,393
10년 전 조회 1,473
10년 전 조회 1,537
10년 전 조회 1,334
10년 전 조회 1,393
10년 전 조회 1,285
10년 전 조회 1,210
10년 전 조회 1,253
10년 전 조회 1,384
10년 전 조회 1,299
10년 전 조회 1,304
10년 전 조회 1,294
10년 전 조회 1,453
10년 전 조회 1,416
10년 전 조회 1,922
10년 전 조회 1,313
10년 전 조회 1,434
10년 전 조회 1,324
10년 전 조회 1,658
10년 전 조회 1,350
10년 전 조회 1,369
10년 전 조회 1,265
10년 전 조회 1,266
10년 전 조회 1,569
10년 전 조회 1,466
10년 전 조회 1,276
10년 전 조회 1,383
10년 전 조회 1,538
10년 전 조회 1,242
10년 전 조회 1,298
10년 전 조회 1,253
10년 전 조회 1,737
10년 전 조회 1,406
10년 전 조회 1,446
10년 전 조회 1,353
10년 전 조회 1,467
10년 전 조회 1,688
10년 전 조회 1,545
10년 전 조회 1,490
10년 전 조회 1,442
10년 전 조회 1,475
10년 전 조회 1,459
10년 전 조회 1,404
10년 전 조회 1,871
10년 전 조회 1,392
10년 전 조회 1,371
10년 전 조회 1,614
10년 전 조회 1,406
10년 전 조회 1,432
10년 전 조회 1,284
10년 전 조회 1,553
10년 전 조회 1,365
10년 전 조회 1,278
10년 전 조회 1,392
10년 전 조회 2,022
10년 전 조회 1,383
10년 전 조회 1,366
10년 전 조회 1,413
10년 전 조회 1,488
10년 전 조회 1,961
10년 전 조회 1,560
10년 전 조회 1,403
10년 전 조회 1,305
10년 전 조회 1,332
10년 전 조회 1,441
10년 전 조회 1,372
10년 전 조회 1,440
10년 전 조회 1,337
10년 전 조회 1,505