0

我正在寻找一种简单的方法来连接我网站的主页,以便每次有人登陆该页面(只是在他们的浏览器中访问)时,它都会向我的 iPhone 发出推送通知消息。我知道这可能会变得烦人!

我目前使用 cron 和 curl 定期向我的 iPhone 发送通知,以检查站点/RSS 提要的更改,然后发送到 Prowl API,后者又将其发送到我的 iPhone - 如下所示:

curl https://prowl.weks.net/publicapi/add -F apikey=$apikey -F priority=$priority -F application="$app" -F event="$eventname" -F description="$description"

我可以从主页的 HTML 中做类似的事情吗 - 在我的服务器上调用一个脚本,然后触发上面类似的 curl 请求?也许使用 Javascript 或 PHP?理想情况下,我希望我的网页的加载和呈现不会被呼叫中断。

给 Prowl 的小费 - http://prowl.weks.net/api.php和 flx.me 两者我都用来制作我已经在工作的东西。

4

1 回答 1

0

如果您安装了 PHP 的 cURL 库,则可以直接从 PHP 执行命令(请参阅http://php.net/manual/en/book.curl.phphttp://curl.haxx.se/libcurl/php/) :

<?php
// This is at the top of the HTML page
// (although you could put it anywhere)
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://prowl.weks.net/publicapi/add");
// The next 2 commands assume that you are sending a POST request
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, "apikey=$apikey,priority=$priority&application=$app&event=$eventname&description=$description");
curl_exec ($ch);
curl_close ($ch);
?>
<html>
...

此外,您可以使用 PHP 的systemexec或类似函数来执行 cURL 命令:

<?php
// This is at the top of the HTML page
// (although you could put it anywhere)
exec('curl https://prowl.weks.net/publicapi/add -F apikey=$apikey -F priority=$priority -F application="$app" -F event="$eventname" -F description="$description"');
?>
<html>
...
于 2011-01-13T02:35:51.697 回答