我需要在PHP中实现Pushwizard来发送推送通知。
我已经实现了这个PHP代码
$api_key = "MY_API_KEY";
$msg = "Website PHP msg.";
$data = array("command" => "send", "message" => $msg);
$data_string = json_encode($data);
$ch = curl_init('https://pushwizard.com/api/'.$api_key.'/json');
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array ( 'Content-Type: application/json', 'Content-Length: ' . strlen($data_string)));
$result = curl_exec($ch);
print $result;
但它给了我这个错误信息。
{"error":"0002","error_msg":"app not found"}
我检查了我的配置。从pushWizard管理面板我可以发送推送通知,它在那里工作正常。但是从PHP api中它给了我一个错误。
我用Google搜索但无法找到任何答案。 有没有自己实现它?
提前致谢。