Questions tagged [rich-notifications]

This tag is dedicated to questions about Google Chrome's rich notifications API for packaged apps and extensions.

This tag is dedicated to questions about Google Chrome's rich notifications API for packaged apps and extensions.

This API enables Google Chrome apps and extensions to emit notifications in a standardized, cross platform way.

The API is documented in http://developer.chrome.com/apps/notifications.html

The official announcement about the API was made in Google's Chromium Blog: http://blog.chromium.org/2013/05/rich-notifications-in-chrome.html

The API was first introduced in Google Chrome release 28, and replaces previously implemented HTML notifications.

41 questions
7
votes
1 answer

Show Hyper Link in remote notification with Message

I need to show hyperlink in my remote notification along with Title and body. I have done some thing like this: @IBAction func openPDFButtonPressed(_ sender: Any) { self.scheduleNotification() } func scheduleNotification() { let…
hood
  • 65
  • 1
  • 9
7
votes
2 answers

Detect if Rich Notifications in Chrome are available

My Chrome extension makes heavy use of webkitNotifications. I want to switch to the new rich notifications (chrome.notifications) but those aren't available on all platforms yet and at the moment of writing only in the beta channel and up. If the…
5
votes
3 answers

Rich Push Notification - Video won't play in Notification Content Extension

I am working on rich notification's Notification Content Extension and have able to load images and gif successfully like following screenshot: Now i am trying to play video and i am doing following code for playing it. -…
4
votes
1 answer

Uploading app with Push Notification Service Extension

I just created an application with bundle identifier com.example.xyz and also generated provisioning and certificates for the same. Now , I needed to use Push Notification Service Extension to use Rich notification So I created new target with…
4
votes
2 answers

Using Data in Rich Push notification on iOS with FCM

My question might be bad, but I can't find any answer anywhere, I'm lost... So I want to display a rich notification with a nice image in iOS 10+. For this I'm using FCM and an UNNotificationServiceExtension which, if I understood correctly, should…
4
votes
4 answers

How to implement rich notifications in ios 10 with Firebase

I have been looking for a solution for this since quite a while. But I am not able to find anything. I have implemented Push Notifications for iOS using FCM. But I don't know if FCM supports iOS 10 rich notifications. If it does, I didn't find code…
3
votes
1 answer

Send FCM data message using Firebase Console

Firebase cloud messaging service working very well compare to other push notification services and also very useful dashboard to see all the collection of details. My requirement need to send image using Firebase Console (data payload/ rich…
3
votes
1 answer

iOS Rich Push notifications with Xcode, Swift3 but cannot get image

I am trying to create iOS Rich Push notifications with Xcode, Swift3. I already make sure about push notifications (subject, body) with curl command of php but I can't create Rich Push Notifications referred to in this document. I added Notification…
3
votes
0 answers

Xamarin iOS Rich Push Notification Issue

I am trying to implement media/rich/enhanced notifications in ios. I have an iPhone 6, 6s and 7. The image I send in the payload appears in the rich notification on the 6 , but not on the 6s or 7. The code seems to just stop at the…
3
votes
1 answer

iOS 10 remote notifications with pictures

First of all I'm new developing with Swift, I have an Objective C background, but I'm mainly an Android developer. Actually I'm developing an app in Swift 3 and Xcode 8. I need to add to this application the new rich push notification system of…
gabicuesta
  • 329
  • 5
  • 17
2
votes
1 answer

Notification service extension not called on flutter iOS

Issue:- When getting remote notification have to show image using the imageurl in payload. In Android it’s working fine once we changed the payload. In iOS image not showing in push notification. Issue facing on Notification Service Extension:- I…
2
votes
1 answer

ios13 notification content custom height

Our code was working with previous versions, but on iOS13 the custom notification content height is not working properly. Everything is visible as it should be, but the buttons are not clickable after a part of view. So for example after 320 pixel…
2
votes
2 answers

Provisioning profiles for Service Extension and Content Extension

I am trying to implement Rich notifications in my iOS application and while using Notification Service Extension and Notification Content Extension, post running my app I am getting error of same bundle identifier. For these extensions do I need to…
2
votes
1 answer

Notification Content Extension is not appearing for multiple category name?

I have added Custom Remote Notification Content Extension to my project and added multiple Extension categories into the Notification Content Extension target info.plist file like the following: added different types of notification action…
2
votes
1 answer

Rich notification on iOS

I need to enable Rich notification on iOS 10 and above for iPhone (5x,6x & 7x) models. The notifications come with an embedded image and the image should be expanded by default. See the sample image below: Can anyone help? Thanks in advance.
Jaykay
  • 666
  • 1
  • 4
  • 17
1
2 3