Edujugon / PushNotification

PHP and Laravel Package to send push notifications to Android and IOS devices.
MIT License
478 stars 159 forks source link

Fake Message ID error #35

Closed risnaa closed 6 years ago

risnaa commented 6 years ago

I am new to Laravel and Pushnotification as well, I am using below code t send push notification

$respone = PushNotification::setService('fcm') ->setMessage([ 'notification' => [ 'title'=>'Sheep App notofication', 'body'=>'A user try to contact you', 'sound' => 'default' ]]) ->setApiKey('AAAAxO2N17Q:APA91bGS5s7qy0larSwA0SOnz-5hv-Ls62hKJI3A5Q1ReKfgicl-aT2kB4hW-wpKt3sOV_q1rPGaWJRaKRv8tZ2rq99DTCq1ffqujKhsxOqObXjHTCGdzr2y8aBH_N9TZ874Mmx7IZux') ->setDevicesToken(['ewGx_pBcDzI:APA91bH1JQIpQyqsik5RM_wtAAkrCb035Vkh8DQxSuv6X2qr3QlooVb5-b_y1lB9x3Jk1i9URC9LjA2UgbrVWQmlYu82rrwKzfTNrDt7qGfkbR60lr3lNk3alAUWoANIQWe60linN96i']) ->send() ->getFeedback();

I am getting fake_message_id Error Please help me to solve the Issue.

Edujugon commented 6 years ago

Hi @risnaa ,

Make sure that your dry_run config parameter is false instead of true?

If that doesn't solve it, paste in here the full response message.