1
这里是我的代码,如何获得laravel推送通知的反馈?
$device_token = "*****";
$message = "Hi This is Test push notification";
PushNotification::app('appNameAndroid')
->to($device_token)
->send($message);
我已经试过这个网址https://github.com/davibennun/laravel-push-notification
Laravel 5.2显示错误 异常'Sly \ NotificationPusher \ Exception \ AdapterException'消息'Gcm adapter has no dedicated“getFeedback”method“ –