Send a server-wide broadcasted notification to all connected clients, but replace the sender with your name instead of just Handoff.
curl --request GET \
--url http://localhost:5754/handoff/{token}/notify/{data}/{sender}import requests
url = "http://localhost:5754/handoff/{token}/notify/{data}/{sender}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('http://localhost:5754/handoff/{token}/notify/{data}/{sender}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "5754",
CURLOPT_URL => "http://localhost:5754/handoff/{token}/notify/{data}/{sender}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "http://localhost:5754/handoff/{token}/notify/{data}/{sender}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://localhost:5754/handoff/{token}/notify/{data}/{sender}")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost:5754/handoff/{token}/notify/{data}/{sender}")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"message": "Successfully completed action.",
"status": "success"
}Legacy Handoff V1 API
Send a server-wide broadcasted notification to all connected clients, but replace the sender with your name instead of just Handoff.
GET
/
handoff
/
{token}
/
notify
/
{data}
/
{sender}
Send a server-wide broadcasted notification to all connected clients, but replace the sender with your name instead of just Handoff.
curl --request GET \
--url http://localhost:5754/handoff/{token}/notify/{data}/{sender}import requests
url = "http://localhost:5754/handoff/{token}/notify/{data}/{sender}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('http://localhost:5754/handoff/{token}/notify/{data}/{sender}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "5754",
CURLOPT_URL => "http://localhost:5754/handoff/{token}/notify/{data}/{sender}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "http://localhost:5754/handoff/{token}/notify/{data}/{sender}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://localhost:5754/handoff/{token}/notify/{data}/{sender}")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost:5754/handoff/{token}/notify/{data}/{sender}")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"message": "Successfully completed action.",
"status": "success"
}Path Parameters
The HandoffAPI Token.
Example:
"3YJQ0BF65H3HAFJPT7GMPD"
The actual data to be shown to all clients.
Example:
"I'm a notification!"
The notification sender's name.
Example:
"My App"