我无法通过PHP中的REST API向特定用户发送通知。 我从OneSignal中的所有用户获得了玩家ID的值。
PHP代码
<?php
$content = array(
"en" => "messaggio test"
);
$fields = array(
'app_id' => "xxxxxxxx",
'included_segments' => array("All"),
'data' => array("foo" => "bar"),
'filters' => array(array('field' => 'tag', 'key' =>
'userId', 'relation' => '=', 'value' => 'xxxxxxxxxxx')),
'contents' => $content
);
$fields = json_encode($fields);
print("\nJSON sent:\n");
print($fields);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,
"https://onesignal.com/api/v1/notifications");
curl_setopt($ch, CURLOPT_HTTPHEADER,
array('Content-Type: application/json; charset=utf-8',
'Authorization: Basic xxxxxxxxxxxxxxx'));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_HEADER, FALSE);
curl_setopt($ch, CURLOPT_POST, TRUE);
curl_setopt($ch, CURLOPT_POSTFIELDS, $fields);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
$response = curl_exec($ch);
curl_close($ch);
?>
javascript代码
window.plugins.OneSignal
.startInit("xxxxxxxxxxx")
.handleNotificationOpened(notificationOpenedCallback)
.endInit();
window.plugins.OneSignal.setSubscription(true);
此代码适用于向所有设备发送通知,但不向单个用户发送通知。
答案 0 :(得分:1)
window.plugins.OneSignal.getIds(function(ids) {
var device_id = ids.userId;
});
&#13;