Smartface google push notifications is not clear - smartface.io

http://api.smartface.io/api/PushNotification/Send/{access_token}.
How can i use it ? can you publish a example please ?How we will send a notificiation from a php script to all users.

Smartface App Studio offers you push notification services at client side.
You should use a push notification server to send notifications.
http://api.smartface.io/api/PushNotification/Send/{access_token}
is our test server which is outdated.
For more information about client side processes please read http://www.smartface.io/developer/guides/advanced/push-notifications

Related

How to make voice/video call in pidgin (XMPP)?

I'm using ejabberd as my XMPP server and Pidgin as my client.
My ejabberd version is 22.05 and my Pidgin version is 2.14.10
I have configured my ejabberd server for making voice/video call by following this article.
Now what should I do to make voice/video call through pidgin? I didn't see any plugins for enabling voice/video chat in pidgin.
As at today (7/11/2022), the pidgin website says that the voice and video calls support is still under development. Check this link: https://pidgin.im/development/voice-and-video/
I only know Gajim Client and Conversations Client does support voice and video calls.

Notifications on Flutter from a Django Server

I am developing a Flutter Application with Django Backend.
Our app has a feature to send notifications to user, which will be sent from the server.
I understood we need to build a stream for this.
But do we need external services to build our stream like getstream.io?
Or we can build our own stream using Django?

How to send push notification to ionic app from java server using MFP8.0?

I have my sample ionic application which is using service from REST web service. Now, I want to send push notification from my REST web service to ionic application using MFP 8.0.
Is there any Documentaion for this requirement. I searched, but I unable found how to do this through web service.
Anyone help will be Appreciated!!!
I'm not convinced you've searched... Here is where sending notifications via REST is mentioned in the Sending Push Notifications tutorial: https://mobilefirstplatform.ibmcloud.com/tutorials/en/foundation/8.0/notifications/sending-push-notifications/#rest-apis
You did not specify if your application requires authentication or not, so it is best that you will review the entire Notifications category of tutorials.

How To get Old Messages (Chat History) from XMPP

I am new to XMPP.
and I need to get chat history from Openfire with XMPP.
I did Googling but didn't get satisfactory Answer.
Any link or idea will be great help.
You need to install Monitoring service plugin to enable message archiving. You may have to upgrade your openfire service if this plugin is not appearing in your available plugins section in the admin console.
You will need to log into the admin console and go to:
Server --> Archiving --> Archiving Settings to enable message archiving.
Hope this helps you. Feel free to comment in case of any queries/doubts.
You need to enable archiving on the server.
Follow http://xmpp.org/extensions/xep-0136.html to get the messages.

could not connect to APNS(Apple Push Notifications Server) using Rails, apn_sender gem

I am using Rails 3.2.2 and apn_sender 1.0.5 gem. I have generated proper apn_development.pem and apn_production.pem. I have added them in my rails application. By looking at some article, i have modified the apn_production.pem files permissions also. still i am not able to connect to Apple's APNS Server from my Rails Application.
feedback_data = APN::Feedback.new(:environment => :production), still returns
#<APN::Feedback: Connection not currently established to feedback.push.apple.com on 2196>
Am i missing something or does any body have a detailed tutorial of how to send (APNS) Apple push notifications from a Rails Application.
Any help would be greatly appreciated.
I have found solution. After generating proper certificates, i was having issue with "development build of the application for other environments". By replacing the mobile application with appropriate build, problem was solved.
Thanks!
the APN::Feedback.new() returns # which is a bit misleading. I thought there was a connection elsewhere that I had to make.
Turns out, I just had to call the .data method to start the connection
feedback_data = APN::Feedback.new().data