Michael Dawson
Michael Dawson
I would love to be proven wrong but I don't believe this is possible any more. #701 solved this issue by fixing the event handling for the 'visibilitychange' event. However,...
Make sure you have `user_auth_key` defined in `services.php` ``` 'onesignal' => [ 'app_id' => env('ONESIGNAL_APP_ID'), 'rest_api_key' => env('ONESIGNAL_REST_API_KEY'), 'user_auth_key' => env('ONESIGNAL_USER_AUTH_KEY'), 'guzzle_client_timeout' => env('ONESIGNAL_GUZZLE_CLIENT_TIMEOUT', 60), ], ```
Encountering same issue after updating the packages
The issue is caused by this change: https://github.com/berkayk/laravel-onesignal/compare/v2.2...v2.3 which added an extra argument to the `__construct( )` method. This package will need updating so that it passes a `$restApiUrl` to...
Yeah, I wasn’t entirely sure whether this was technically an issue since it isn’t documented anywhere. There are quite a few things I've stumped across in the past that aren’t...