kawankoding / laravel-fcm

Firebase Cloud Messaging (FCM) sender for Laravel
172 stars 56 forks source link

Need an example #17

Closed iamkatta closed 5 years ago

iamkatta commented 5 years ago

Hello,

Could you please help us in using this package, I did not get what recipient is.

fcm() ->to($recipients) // $recipients must an array ->data([ 'title' => 'Test FCM', 'body' => 'This is a test of FCM', ]) ->send();

Thanks

mai92 commented 5 years ago

Hello @iamkatta $recipients is FCM IDs from your mobile dev get from Firebase :)

erlangparasu commented 5 years ago

https://stackoverflow.com/questions/42930394/how-to-get-registration-ids-from-firebase-fcm/42933101#42933101 :)

iamkatta commented 5 years ago

thanks for reply guys