如何从php服务器端向像Android这样的Visual Basic客户端发送通知
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何从php服务器端向像Android这样的Visual Basic客户端发送通知相关的知识,希望对你有一定的参考价值。
是否有可能从php服务器端向Visual Basic发送通知,或者我是否必须每隔X分钟将服务器端数据库与本地数据库同步以检查是否有任何更改?
<?php
require("connection.php");
include 'send_notification.php';
if (!$conn)
$response["response"] = false;
$response["log"] = mysqli_error($conn);
$response["exception"] = 1;
echo json_encode($response);
else
$pricing = json_decode($_POST['pricing'], true);
$user = json_decode($_POST['user'], true);
// Here update database....
$company_token = getCompanyToken($user["id"]); // Find company token from MySql database to send FCM to android Client
sendNotification($company_token); // Send Notification To Android...It works fine..
// Same notification to Visual Basic Windows Client...
// Help!! Synchronize local database with the server or is there any other way?
mysqli_close($conn);
?>
答案
来自Firebase Cloud Messaging的唯一的用于接收消息的官方SDK用于Android,ios和Web客户端。除非您针对这些平台之一,否则在VB.Net上没有用于接收消息的SDK。
另请参阅:
- How to receive push notifications from Firebase cloud messaging
- Is it possible to receive FCM in .NET Core App (e.g. WPF Core client)
以上是关于如何从php服务器端向像Android这样的Visual Basic客户端发送通知的主要内容,如果未能解决你的问题,请参考以下文章