스윙투앱에서는 대시보드에서 발송하는 푸시 메시지를 API 형태로 발송하는 것을 다음과 같이 제공하고 있습니다.
사전에 협의되지 않은 방식의 API 사용과 , 무분별한 대량발송의 경우 사용에 제한을 받을 수 있습니다.
var form = new FormData();
form.append("app_id", "app_id");
form.append("app_api_key", "api_key");
form.append("send_target_list", "test");
form.append("send_target_type_list", "MEMBER");
form.append("send_type", "push");
form.append("message_title", "메시지 제목");
form.append("message_content", "메시지 내용");
form.append("message_image_url", "https://www.swing2app.co.kr/assets/images/logo.png");
form.append("message_link_url", "https://www.swing2app.co.kr/");
var settings = {
"url": "https://www.swing2app.com/swapi/push_api_send_message",
"method": "POST",
"timeout": 0,
"processData": false,
"mimeType": "multipart/form-data",
"contentType": false,
"data": form
};
$.ajax(settings).done(function (response) {
console.log(response);
});
Unirest.setTimeouts(0, 0);
HttpResponse<String> response = Unirest.post("https://www.swing2app.com/swapi/push_api_send_message")
.multiPartContent()
.field("app_id", "app_id")
.field("app_api_key", "api_key")
.field("send_target_list", "test")
.field("send_target_type_list", "MEMBER")
.field("send_type", "push")
.field("message_title", "메시지 제목")
.field("message_content", "메시지 내용")
.field("message_image_url", "https://www.swing2app.co.kr/assets/images/logo.png")
.field("message_link_url", "https://www.swing2app.co.kr/")
.asString();
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://www.swing2app.com/swapi/push_api_send_message',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS => array('app_id' => 'app_id','app_api_key' => 'api_key','send_target_list' => 'test','send_target_type_list' => 'MEMBER','send_type' => 'push','message_title' => '메시지 제목','message_content' => '메시지 내용','message_image_url' => 'https://www.swing2app.co.kr/assets/images/logo.png','message_link_url' => 'https://www.swing2app.co.kr/'),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
var apiKey = "test_api_key";
var appId = "test_app_id";
var sendTargetList = '-1';
var sendTargetTypeList = "ALL_TARGET";
$.ajax({
url: "https://www.swing2app.co.kr/swapi/push_api_send_message",
type: "post",
dataType: "json",
data : {
app_id : appId,
send_target_list : sendTargetList,
send_target_type_list : sendTargetTypeList,
send_type : 'push' ,
message_title:'메시지 제목',
message_content:'메시지 내용',
message_image_url: 'https://www.swing2app.co.kr/assets/images/logo.png',
message_link_url: 'https://www.swing2app.co.kr/',
app_api_key : apiKey
},
success: function (model) {
console.log("푸시 발송 성공");
}
});
var apiKey = "test_api_key";
var appId = "test_app_id";
var sendTargetList = 'user_id';
var sendTargetTypeList = "MEMBER";
$.ajax({
url: "https://www.swing2app.co.kr/swapi/push_api_send_message",
type: "post",
dataType: "json",
data : {
app_id : appId,
send_target_list : sendTargetList,
send_target_type_list : sendTargetTypeList,
send_type : 'push' ,
message_title:'메시지 제목',
message_content:'메시지 내용',
message_image_url: 'https://www.swing2app.co.kr/assets/images/logo.png',
message_link_url: 'https://www.swing2app.co.kr/',
app_api_key : apiKey
},
success: function (model) {
console.log("푸시 발송 성공");
}
});