authenticate
curl --request POST \
--url https://api.notifly.tech/authenticate \
--header 'Content-Type: application/json' \
--data '
{
"accessKey": "example1234567890abcdef1234567890ab",
"secretKey": "EXAMPLEabc9%"
}
'import requests
url = "https://api.notifly.tech/authenticate"
payload = {
"accessKey": "example1234567890abcdef1234567890ab",
"secretKey": "EXAMPLEabc9%"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({accessKey: 'example1234567890abcdef1234567890ab', secretKey: 'EXAMPLEabc9%'})
};
fetch('https://api.notifly.tech/authenticate', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.notifly.tech/authenticate",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'accessKey' => 'example1234567890abcdef1234567890ab',
'secretKey' => 'EXAMPLEabc9%'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.notifly.tech/authenticate"
payload := strings.NewReader("{\n \"accessKey\": \"example1234567890abcdef1234567890ab\",\n \"secretKey\": \"EXAMPLEabc9%\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.notifly.tech/authenticate")
.header("Content-Type", "application/json")
.body("{\n \"accessKey\": \"example1234567890abcdef1234567890ab\",\n \"secretKey\": \"EXAMPLEabc9%\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.notifly.tech/authenticate")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"accessKey\": \"example1234567890abcdef1234567890ab\",\n \"secretKey\": \"EXAMPLEabc9%\"\n}"
response = http.request(request)
puts response.read_body{
"data": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.example",
"error": null
}{
"data": null,
"error": "Invalid Authorization Token"
}{
"data": null,
"error": "<string>",
"projectId": null,
"durationMs": null
}인증
API 인증 토큰 발급
Access Key와 Secret Key를 사용하여 1시간 유효한 인증 토큰을 발급받습니다. 모든 API 요청 시 Authorization 헤더에 포함해주시기 바랍니다. 과도한 호출을 방지하기 위해 1시간 이내의 재호출은 기존 토큰을 재활용하는 것을 권장합니다.
POST
/
authenticate
authenticate
curl --request POST \
--url https://api.notifly.tech/authenticate \
--header 'Content-Type: application/json' \
--data '
{
"accessKey": "example1234567890abcdef1234567890ab",
"secretKey": "EXAMPLEabc9%"
}
'import requests
url = "https://api.notifly.tech/authenticate"
payload = {
"accessKey": "example1234567890abcdef1234567890ab",
"secretKey": "EXAMPLEabc9%"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({accessKey: 'example1234567890abcdef1234567890ab', secretKey: 'EXAMPLEabc9%'})
};
fetch('https://api.notifly.tech/authenticate', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.notifly.tech/authenticate",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'accessKey' => 'example1234567890abcdef1234567890ab',
'secretKey' => 'EXAMPLEabc9%'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.notifly.tech/authenticate"
payload := strings.NewReader("{\n \"accessKey\": \"example1234567890abcdef1234567890ab\",\n \"secretKey\": \"EXAMPLEabc9%\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.notifly.tech/authenticate")
.header("Content-Type", "application/json")
.body("{\n \"accessKey\": \"example1234567890abcdef1234567890ab\",\n \"secretKey\": \"EXAMPLEabc9%\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.notifly.tech/authenticate")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"accessKey\": \"example1234567890abcdef1234567890ab\",\n \"secretKey\": \"EXAMPLEabc9%\"\n}"
response = http.request(request)
puts response.read_body{
"data": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.example",
"error": null
}{
"data": null,
"error": "Invalid Authorization Token"
}{
"data": null,
"error": "<string>",
"projectId": null,
"durationMs": null
}본문
application/json
⌘I
