Migrate parse "deviceToken" to FCM registration token - parse-platform

I have thousands of users on Parse, and we are sending push notifications to them using parse.
Now we are migrating to firebase and can't guarantee that all users will open the app so FCM gets the new FCM registration token.
The question is can I send to old Parse users given I have their Parse device token (from installation table)?

I'm pretty sure you can't just import the tokens used by parse.com to Firebase Cloud Messaging for use. What should be done is to register your client app users to FCM by adding it to your app.
More details can be found in the Migrate your Parse Android App to Firebase (or if you're using iOS) docs:
Suggested Migration Strategy: Migrating Device Tokens
At the time of writing, the Parse Android SDK uses an older version of the FCM registration tokens, not compatible with the features offered by Firebase Notifications.
You can get a new token by adding the FCM SDK to your app; however, this might invalidate the token used by the Parse SDK to receive notifications. If you want to avoid that, you can set up the Parse SDK to use both Parse's sender ID and your sender ID. In this way you don't invalidate the token used by the Parse SDK, but be aware that this workaround will stop working when Parse shuts down its project.
From my answer here.

Related

firebase-admin send FCM to specific android using device token as authentication

Hello guys I am using firebase-admin, it works fine sending and receiving using notification topics, however our project requires to send FCM to specific android device using device token. I can't find example in the repository of firebase-admin
Several examples available at https://firebase.google.com/docs/cloud-messaging/send-message#send-messages-to-specific-devices

How make real time notification laravel with firebase?

I created laravel web about hospital i want to notified the user when the doctor upload file treatment i don't want use the pusher because expensive for me now ..so any way to do with firebase it's better if now video or article showing me step by step AND how connect the icon when upload the user get notification
You can use the Notifications in Laravel, here is the documentation for the details: https://laravel.com/docs/7.x/notifications
I'm not sure what notification channel would you like to use, Firebase Cloud Messaging is not supported by default, but there is a 3rd party package for that: https://github.com/laravel-notification-channels/fcm
You can find a lot of custom notification channels here: https://laravel-notification-channels.com/

Can I use FCM firebase without their firebase DB?

I have Laravel project and I need to seed notifications from web to mobile (android,iOS) via API, a lot of recommendations goes to Firebase FCM (Firebase Cloud Messaging), but I have a question: can I use FCM of Firebase without using the DB of Firebase just unsing my own DB which is MYSQL ?
Yes, you can use Firebase Cloud Messaging without using any of the other Firebase products.
Just call the FCM REST API from your code, or use the Firebase Admin SDK, after reading the relevant data from your MySQL database.

How to push notification from parse.com to mobile app without integrate parse SDK?

I want to built a rest service by using parse.com. My mobile app will interact with parse via rest api by send http request. Without integrating parse SDK into my app, how can i setup push notification from parse to my app?Thank you a lot.
I think you can not do that, because for handle the push notification in your app, you need parse SDK for PFPUSH object.

Can I use new Parse App API for upload iOS Push Certificates?

I'm wondering if I could use the new parse app api, for update information about ios certificates, more precisely, to upload them.
This is not supported by their Apps API.
Edit: Here is a list of what is supported via the endpoint:
Enabling/Disabling...
...Client Side Class creation
...Client Push
...Revokable sessions
...Revoking a session on password chang

Resources