0

我正在构建一个要在计算机上浏览的 php 网页,该网页具有一些电子邮件发送和日历功能。

我想试试,在从计算机浏览器发送电子邮件或创建日历事件时,是否可以触发警报,例如 iPhone 和 Androld 系统中的声音和振动?

如果没有,那么我可能需要做一些应用程序。谢谢!

4

1 回答 1

0

我会为安卓手机做这样的事情:

function sendMessageToPhone($authCode, $deviceRegistrationId, $msgType, $messageText, $infoType, $messageInfo) {

$headers = array('Authorization: GoogleLogin auth=' . $authCode);
$data = array(
    'registration_id' => $deviceRegistrationId,
    'collapse_key' => $msgType,
    'data.message' => $messageText,
    'data.type'    => $infoType,
    'data.data'    => $messageInfo
);

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, "https://android.apis.google.com/c2dm/send");
if ($headers)
    curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

curl_setopt($ch, CURLOPT_POSTFIELDS, $data);

$response = curl_exec($ch);

curl_close($ch);

return $response;

}

于 2012-09-20T07:37:51.383 回答