如何使用PHP向特定通道发送Parse推送通知?

时间:2015-12-30 16:14:42

标签: php android

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

如果有人提供快速解决方案,那么对我来说真的很有帮助。 我在下面提到了链接,但它没有帮助。

1 个答案:

答案 0 :(得分:0)

在服务器端(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;
}

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

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 :)"); 
        }
    });