直接从OneSignal发送基于用户数据库的Web推送(Chrome-GCM / FCM)通知

时间:2019-01-30 19:24:36

标签: push-notification google-cloud-messaging firebase-cloud-messaging onesignal web-push

我目前正在使用OneSignal作为网络推送提供商,并且想独立地向所有用户发送消息,而无需依赖并依赖他们的服务(显然是新引入的费用)。

OneSignal确实让我下载了包括GCM / FCM数据在内的整个用户数据库。

提供的数据足以编写一个简单的代码来从数据库向用户发送消息吗?

以下是其中一行提供的字段的示例:

id
identifier
session_count
language
timezone
game_version
device_os
device_type
device_model
ad_id   tags
last_active
playtime
amount_spent
created_at
invalid_identifier
badge_count
lat
lon
rooted
ip
country web_auth
web_p256



7a2ad79c-4315-4b57-be2b-6cce179260ed
https://android.googleapis.com/gcm/send/eNKyRHWMfMs:APA91bHMRVQk7gz27_JNTEsMnorqzd_JR6626eg43p-BhXmb1pslLX66db6w5-Aj--3GtpoCSVRHzMv2y_9tQlIVWKLakfmfLEAXy3rOsI4dvujHwou_X2wY9-TezBuDgST-o5A0fvo3
1
en
28800
56.0
5
Win32 Chrome
{}
2017-03-11 13:48:03.503015
0
0.00
2017-03-11 13:48:03.488008
t
0
f
125.60.243.173
PH
BFgB3OnEz3fGbNEbC/hiMA==
BMgmk8uppenwp1c5sPprEPHNYOu7n8yUjbAU7sKaImqldN+WnJosdZmUV/d4bv7RyQYiqu/z6KsJSn99B+A3IIA=

如果可能的话,我将非常感谢以任何语言(最好是PHP,不一定是PHP)朝着代码示例的方向发送消息,例如,可以完成向该用户发送消息的过程。

谢谢!

1 个答案:

答案 0 :(得分:0)

您可以使用一个信号的rest api将通知发送给用户。 在一个信号上发送卷曲请求,其中包含所有必需的详细信息-

$content      = array(
    "en" => '' // Your message content
);
$heading = array(
    "en" => ''  // Put heading according to you
);
$fields = array(
    'app_id' => ,  // Enter our app id here
    'filters' => array( array( "field" => "tag", "key" => "ad_id", "relation" => "=", "value" => 0) ), // You can use the ad_id data tag 
    "url" =>  '',  // Enter your landing url
    'contents' => $content,
    'headings' => $heading
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
            'Content-Type: application/json; charset=utf-8',
            'Authorization: Basic '.REST_API_KEY.''           // Your api key
));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_HEADER, FALSE);
curl_setopt($ch, CURLOPT_POST, TRUE);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
$response = curl_exec($ch);
curl_close($ch);
return $response;

您可以在实际情况中使用数据标签或Plaer ID向已过滤的用户发送通知。