Salut en faisant une recherche sur le net j'ai trouvé le code php qui fonctionnait
Il faut créer une indicator App ici:
https://developer.lametric.com/applications/listRécupérer l'URL et modifier le code php pour ajouter les valeurs.
(Modifier $url et X-Access-Token)
Par contre le problème est que ça fait un script par notification (Modifier la valeur text)
Mais en attendant ça fonctionne! (je viens de tester)
- Code : Tout sélectionner
<?php
$url = "votre_url";
$frames = array(
"frames" => array(
array(
"index" => 0,
"icon" => "i1299",
"text" => "votre_notif"
),
array(
"index" => 1,
"chartData" => array (
4,3,2,1
)
)
)
);
$curl = curl_init();
$headers = array(
"Accept: application/json",
"Content-Type: application/json",
"X-Access-Token: votre_token",
"Cache-Control: no-cache",
);
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
curl_setopt($curl, CURLOPT_POST, 1);
curl_setopt($curl, CURLOPT_POSTFIELDS, json_encode($frames));
$response = curl_exec($curl);
curl_close($curl);
?>