Send HTML as Push Notification Message - notifications

I have 2 questions:
1) I need to send HTML in Push Notification IBM MobileFirst as a message, can I achieve it? If yes, how?
2) Using MobileFirst Console, can we send Push Notification? or in case we don't have any adapter/ or data source can we acheive push notification?
glad hearing you guys soon.

Push notifications are meant for very short text-based messages and are limited in size; sending mark-up will in all likelihood exceed this.
In order to use push notifications in IBM MobileFirst, you must use adapters. Please see the user documentation and developer center for more information.

Related

Push notification preferences

We need to allow a user to set specific preferences for receiving push notifications. Examples:
mute specific channel
send push only when #mentioned (global and
chat specificly)
docs https://getstream.io/chat/docs/#push_ios doesn't cover it at all. Seems only turn on/off all notifications is possible?
At the moment this is not supported by Stream Chat, improvements to the Push capabilities are added regularly so extended support for mutes and mentions will also come up soon enough.
In the meantime you can achieve this by handling chat events via webhooks and add the mute/mention logic on your webhook handler. More information about this can be found in the docs: https://getstream.io/chat/docs/#webhook_events

Push Notification in Mobile Xamarin using Firebase

I'm new in xamarin. I need to implement a mobile app with push notification (maybe using Firebase) with user authentication. One user can send a notification to one or more than one user. So far I cannot find the right tutorial.
Would you help me find the way to implement a mobile app with push notification (maybe using Firebase)? Thank you in advance.
Hi flo you can start with this which can help you to get into working of FCM.
and here you can get the topic messaging i.e. sending to multiple devices and at this place you can see the steps which can be used for xamarin you just have to see the corresponding files in xamarin.

Muc-light with push notification support

I've implemented muc light on mongooseIM chat server and can say good job to the team as this is exactly what we all wanted in mobiles world of group messaging.
1) Have anyone handled the push notification using this much light. As I have used the mod_zeropush for the single chat can I modify the same for supporting mod muc light as well.
2) Also how to handle mam on client side for the offline message as I understand from docs mod_offline can be used only for single chat and not muc light.
Thanks for any guidance given in advance.
I modified the mod_zero push erl and compiled to support the muc chat light message notifications to send to user.
Also when the user wakes up and he gets the next message from the MUC light I fetch the group info to create the group and link rest messages (hence onwards) to this group.
For the previous messages I used the MAM directions as given in this reference link for fetching the archived message from the server. Provided the server is enabled for muc_light message archive.

Apple Push Notification - Can read all incoming messages like Pebble App?

Pebble App can read all incoming messages. I want make app that read all messages in push notification center without jailbreak. Is it possible?
Maybe it's a bit too late, but actually it's possible and Apple didn't help Pebble. The trick is "Message Access Protocol" supported by iPhone 4+
This is the technology used by in-car system, pebble and, recently, Notifyr.
No , It is Not Possible.
You can not read all Notifications.

how push notification works and what is the requirements of it?

i want to know how do i enable my application to use push notification service.i read the guide but doesn't find it much detailed information about it.Could someone tell me an easy way that how it works,what are the requirements,how do i apply this in my app. one thing i would like to know that according to guide the connection between provider and APNs must be asynchronous,What does it mean? also i read that if we continuously connect and disconnect APNs will block the IP. so what is the minimum time difference to connect to APNs after disconnecting.Please guide me in according to the question.thanks
First off, there are quite a few tutorials out on the net for how to do this.
But here's the basics:
You need a server that is able to connect to the APNs whenever you have notifications for your app.
That server will then connect to the APNs using your Apple supplied SSL cert.
For each messages that you have to send:
a. Create a payload message that your app can do something with.
b. Include the deviceToken for the iPhone you want to send notifications to.
c. Write the raw data (see Apple's docs for specifics on the format) to the socket for each message.
Disconnect from the APNs.
What Apple means by "asynchronous", is that the APNs will not send a response to any of your data acknowledging it. So you need to make sure that whatever networking library you're using to connect can support raw data connections.
I don't think I have seen any published guidelines for minimum time between connections. I think Apple's note is more specifically directed to ensure that you're batching your messages and not flooding the APNs maliciously. I suspect that they'll contact you first if they feel you're overstepping the bounds.
Again, I would suggest a quick Google search on "iphone push notification tutorial" for specifics that can guide you further.
Hope this helps you on your way.