如何使用PHP将Parse推送通知发送到特定频道



如何使用php代码通过Parse.com推送通知。我想把它推送到特定的定义频道,即subscribeInBackground。

如果有人能给出一个快速的解决方案,那对我真的很有帮助。我参考了以下链接,但没有帮助。

  • 链接1

  • 链接2

在服务器端(php)中使用此代码(对我有效)

function sendPush($message,$email)
{
$APPLICATION_ID = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXX";  //put your identifiers here
$REST_API_KEY = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";  // and here 
$url = 'https://api.parse.com/1/push';
$data = array(
    // 'where' => '{}',     //uncomment this line to send push to all users
    'where' => array(     // send to specific user via email
        'email' => $email
    ),
    'data' => array(
        'alert' => $message,
    ),
);
$_data = json_encode($data);
$headers = array(
    'X-Parse-Application-Id: ' . $APPLICATION_ID,
    'X-Parse-REST-API-Key: ' . $REST_API_KEY,
    'Content-Type: application/json',
    'Content-Length: ' . strlen($_data),
);
$curl = curl_init($url);
curl_setopt($curl, CURLOPT_POST, 1);
curl_setopt($curl, CURLOPT_POSTFIELDS, $_data);
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($curl);
echo $result;
}

在客户端(安卓系统)使用此代码通过电子邮件注册和识别每个用户:

public static void subscribeWithEmail(String email) {
    ParseInstallation installation = ParseInstallation.getCurrentInstallation();
    installation.put("email", email);
    installation.saveInBackground();
}

然后。。。当您在服务器中调用您的sendPush函数时,它将通过传递的电子邮件向特定用户发送消息,并向sendPush功能发送消息。。。

你想要特定的频道是吗?在php代码中替换此。。。

 $data = array(
    'channel' => 'yourChannelName',
    'data' => array(
        'alert' => $message,
    ),
);

并在android中使用此代码订阅频道:

ParsePush.subscribeInBackground("yourChannelName", new SaveCallback() {
        @Override
        public void done(ParseException e) {
            Log.d("LOG","successfully subscribed to channel :)"); 
        }
    });

最新更新