Tag push-notification

[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…

[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 ) )…