how to log pushbullet notifications which is showing through chrome browser extension? - pushbullet

I am using pushbullet to receive my phone notifications to my computer through pushbullet chrome extension. see Now i can get pushbulllet notifications from my phone to computer which is completely fine. but, i want to log those notifications somewhere which is very useful if i'm not in front of my computer because the notification are showing for very limited time.
basically i am a PHP developer,is there any way to achieve this using pushbullet API?.
thanks
charles

Related

How could the app send a message to the phone when certain mission fulfilled?

I can use FCM console to send messages to all users or certain users at a certain time.
Now I want the app send a message to specified users when their in-game energy is full. How to realize it with FCM? And can I know the messages' sends, opens, conversions?
Sending a message to a user can only be done from a trusted environment, such as the Firebase console, or a place where you can trust that the code running is yours (such as your development machine, a server that you control, or something like Cloud Functions/Cloud Run).
For examples of how to send a message by calling FCM's API, see the documentation on building send requests, and this sample use-case of notifying the user when something interesting happens using Cloud Functions.

Whatsapp API not Working On desktop and PHP page

Good Day
I had a Whatsapp API I used in a URL to send a Whatsapp to a specific person or group in my contact list. Below is the code I used.
https://api.whatsapp.com/resolve?deeplink=/%3Ftext%3D%252AeTrack%2BNational%2BLookout%253A%252A
It normally worked fine and no issues. Now looks like Whatsapp page has been removed. I need a similar external link to send messages from my PHP page to a whatsapp contact or group. We use either Whatsapp Web or their Downloaded app on Windows. On our Android phones the link still works and opens Whatsapp and we can select the recipient. But using Chrome and a Windows system it does not open Whatsapp anymore.

Reacting to discord notifications from another app

I would like to know if there's any way to read notifications from discord app to be able to fire actions on my computer. I have been looking for information about action center in windows 10 but it seems there is no public api to access all notifications in the action center just the ones from your app.
On the other hand I have been using WireShark to check the network traffic but it is encripted so, there's no way (that I know) to check the decripted notification message.
I can't use a discord bot to do this. It must be done in my desktop machine.
Is it possible to do this?

Does tvOS support notification facility for chat applications?

I am building a tvOS app for the new Apple TV that needs to get notifications from a server every time that a chat message is sent. This notification is also to be displayed on the Apple TV. As much as I understand push notifications are not allowed with tvOS.
With this being said, are there any alternatives to what I need?
To clarify: This is a chat app that needs to display a notification to the user on the TV screen every time a message is received by the user. The app stays running indefinitely, while showing instant notifications. - I cannot use push notifications.
Please let me know if this makes sense, and thank you in advance for your help!
We recently built an app for apple TV that shows instant messages from different clients connected to our server. A good library that will answer your requirements is socket.io-client
Just google socket.io and learn how it works. Basically, you wait for a connection on your server and then you can send messages to your clients. On the client side (tvOS in your case) you specify what methods to run as response to the different event coming from the server.
Good luck.

Automation Testing for Chat Based Application or Push Notification

I Wonder if is there any possibility of testing the Mobile Chat based application through automation scripts. Lets say we have whatsapp, FB, Skype chat based apps. How people will be doing testing for these apps apart from manual?
I can automate on one side of mobile through some automation tools selendroid, see test and some other like open application, search a contact ,and send text message. But how on the other side of mobile will be automated ? like as soon as it receives message it replies with same message.
Even how push notification automation testing is done?
I can see some apps which do auto reply for sms , but thats not works for testing.
Kindly suggest your thoughts on this.
I have automated the chat apps for mobile on iOS and Android. Automating both sides is possible.
For ex- you have a scenario that you want to login to your chat app account and send a message to another user.
You have to use two devices. Connect them to your system give them different names. Like you mentioned seetest.Two devices can be connected to it at a time.
Lets say device1 and device2.
Pseudo script -
Device1 activate
Launch chat app in device1 - login
Device2 activate
Launch chat app in device2 - login
Device1 activate -select a user(which logged in from device2)- send message
Device2 - check the notification object or the object which will display this message and compare the property say "text" with the message sent from device2.
You can guide the script using the functions from the mobile automation tool to run your script step on a device with particular name or identifier.