如何从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。

另请参阅:

以上是关于如何从php服务器端向像Android这样的Visual Basic客户端发送通知的主要内容,如果未能解决你的问题,请参考以下文章

如何从后端向用户本地主机上的另一台服务器发出请求

如何从android中的php关联数组解析JSON响应?

利用Python代向像数据库中添加多天数据(主要用来造数据)

如何从android的浏览器运行php脚本? [关闭]

PayPal:使用在客户端创建的令牌在服务器端向客户收费

如何从php服务器获取json数据到android mobile