[Solved] IBM Worklight – How to Setup Push Notification [closed]

You start by reading The IBM Worklight Getting Started Push Notifications training module and IBM Worklight Information Center‘s push-related articles. You then familiarize yourself with the push-related API methods (client, server) and then You either try to create a sample app yourself and/or review the supplied sample app prior to creating yours There is no … Read more

[Solved] Simple android Push Notification

You need a notification service, and google has something like that for us… how does this works?? Take a look at the image below, you need to register your android app in the google service, and your web interface will need an id, so everytime you want to push something to the android, your web … Read more

[Solved] Create Registration Notification Hub Azure PHP

# build uri $uri = $this->endpoint . $this->hubPath . “/registrations” . NotificationHub::API_NEW_VERSION; $ch = curl_init(); $token = $this->generateSasToken($uri); $headers = [ ‘Authorization: ‘. $token, ‘Content-Type: application/xml’, ‘x-ms-version: 2015-01’ ]; $request_body = self::requestBodyRegistration($device_type, $tagsOrTagExpression, $device_code ); if( is_null( $request_body ) ) { return null; } curl_setopt_array($ch, array( CURLOPT_URL => $uri, CURLOPT_POST => TRUE, CURLOPT_RETURNTRANSFER => TRUE, … Read more

[Solved] How can I set the android channel notification from code in firebase cloud function?

Solution: It seems that you can assign the category that you want to relate the message: const message = { android:{ notification:{ title: ‘Game started!’, body: ‘Game ‘+ salaName +’ has started!’, channel_id: “notification.category.default”, } }, topic: “topicName” }; Source: https://firebase.google.com/docs/reference/fcm/rest/v1/projects.messages#androidfcmoptions 0 solved How can I set the android channel notification from code in firebase … Read more