我正在使用php(curl)发送android推送通知。 以下是我发送通知的课程。
public function send_notification($registatoin_ids, $message)
{
include_once 'config.php';
$url = 'https://android.googleapis.com/gcm/send';
//issue here
$fields = array('registration_ids' => $registatoin_ids, 'data' => $message);
$headers = array('Authorization: key=' . GOOGLE_API_KEY, 'Content-Type: application/json');
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));
$result = curl_exec($ch);
if ($result === FALSE)
{
die('Curl failed: ' . curl_error($ch));
}
像这样,我可以将消息发送给所需的收件人,我正在成功。 但是,我只能发送这样的消息。
假设我想发送其他信息,例如网站链接或其他不会附加到邮件的数据。
我会在哪里添加?
'registration_ids'和'data'是唯一值吗?
androids文档不包含php示例。
答案 0 :(得分:1)
变量数据可以是数组。所以你发这样的消息。
$data = array("url" => "wwww.google.com", "message" => "Hello, Google");