firebase

  1. fabricio

    Android Code Snippet Send notifications to one of two apps in the same project at firebase

    Private Sub SendMessage(Topic As String, Title As String, Body As String) Dim Job As HttpJob Job.Initialize("fcm", Me) Dim m As Map = CreateMap("to": $"/topics/${Topic}"$, "restricted_package_name": "YOUR_PACKAGE") Dim data As Map = CreateMap("title": Title, "body": Body)...
  2. QtechLab

    B4J Question FCMPush Authentication issue

    Hi, I would like to send notification to specific device with the B4J server. I have the Firebase token of the destination device. I'm in trouble with Firebase authentication. This is the code, FCMPush with little variation: 'Non-UI application (console / server application) #Region Project...
Top