Я следовал за всеми шагами, чтобы построить простое приложение в ионной структуре от Вот.И я использую PHP-код для серверной стороны, чтобы вызвать ионную API для push-уведомлений. Я использовал следующий код, но я не получаю уведомления в моем приложении. Пожалуйста, предложите решение.
<?php
$androidAppId = "e2c77770";
$data = array(
"tokens" => "APA91bF2YePDKxE6K6vZYs2KQ27Z4mdehJg-EaZaPy10w-RHN5RUgC_P6Uie24Qu_M28j9bfZcbU6pu8Awofa8h2G5j9jABnebrVIUgKM5JcZPEJHYVW2NINirAm7VnSqGOrqm4YicAoI9Xiw5zkgTx4edqXIANLEhvqsqSCeq-_gAuzZB8wvrQ",
"notification" => "Hello World!");
$data_string = json_encode($data);
$ch = curl_init('https://push.ionic.io/api/v1/push');
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Content-Type: application/json',
'X-Ionic-Application-Id: '.$androidAppId,
'Content-Length: ' . strlen($data_string))
);
$result = curl_exec($ch);
?>
Я никогда не имел дело с ионным, но в соответствии с примером Python, приведенным в http://docs.ionic.io/v1.0/docs/push-sending-push Вы должны добавить заголовок авторизации к запросу.
private_key = YOUR_PRIVATE_API_KEY
b64 = base64.encodestring('%s:' % private_key).replace('\n', '')
#I didn't get why they used colon while encoding the api key??
req.add_header("Authorization", "Basic %s" % b64)
Реализация PHP этого фрагмента Python будет такой;
<?php
$yourApiSecret = "YOUR API SECRET";
$androidAppId = "e2c77770";
$data = array(
"tokens" => "APA91bF2YePDKxE6K6vZYs2KQ27Z4mdehJg-EaZaPy10w-RHN5RUgC_P6Uie24Qu_M28j9bfZcbU6pu8Awofa8h2G5j9jABnebrVIUgKM5JcZPEJHYVW2NINirAm7VnSqGOrqm4YicAoI9Xiw5zkgTx4edqXIANLEhvqsqSCeq-_gAuzZB8wvrQ",
"notification" => "Hello World!");
$data_string = json_encode($data);
$ch = curl_init('https://push.ionic.io/api/v1/push');
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Content-Type: application/json',
'X-Ionic-Application-Id: '.$androidAppId,
'Content-Length: ' . strlen($data_string),
'Authorization: Basic '.base64_encode($yourApiSecret)
)
);
$result = curl_exec($ch);
var_dump($result);
Кроме того, вывод результата может многое рассказать о состоянии push-уведомления, которое вы хотите отправить.
Я создал полную библиотеку, которая позволяет вам потреблять Ionic Cloud API для отправки push-уведомлений (нормальный и запланированный), получить список страниц для отправки push-уведомлений, получения уведомлений, получения информации о зарегистрированных устройствах, удаления зарегистрированных устройств с помощью токена и т. д.
Эта библиотека требует PHP 5.1+
а также cURL
,
composer require tomloprod/ionic-push-php
use Tomloprod\IonicApi\Push;
$ionicPushApi = new Push($ionicProfile, $ionicAPIToken);
// Configuration of the notification
$notificationConfig = [
'title' => 'Your notification title',
'message' => 'Your notification message. Bla, bla, bla, bla.'
];
// [OPTIONAL] You can also pass custom data to the notification. Default => []
$payload = [
'myCustomField' => 'This is the content of my customField',
'anotherCustomField' => 'More custom content'
];
// [OPTIONAL] And define, if you need it, a silent notification. Default => false
$silent = true;
// [OPTIONAL] Or/and even a scheduled notification for an indicated datetime. Default => ''
$scheduled = '2016-12-10 10:30:10';
// [OPTIONAL] Filename of audio file to play when a notification is received. Setting this to default will use the default device notification sound. Default => 'default'
$sound = 'default';
// Configure notification:
$ionicPushApi->notifications->setConfig($notificationConfig, $payload, $silent, $scheduled, $sound);
// Send notification to all registered devices:
$ionicPushApi->notifications->sendNotificationToAll();
// or send notification to some devices:
$ionicPushApi->notifications->sendNotification([$desiredToken1, $desiredToken2, $desiredToken3]);
Вы можете прочитать больше об этой библиотеке здесь: https://github.com/tomloprod/ionic-push-php