Joseph Ajibodu

Results 7 comments of Joseph Ajibodu

> Hello. We are using this repo in our project. There is no problem in local tests, but when we perform it on the server, we get a 500 error....

It can send notifications to multiple devices. Are you sure you subscribed those devices to any interest? Also, your exception could be of help to you. Handle it.

``` // Notify an interest with a notification $expo->notify([$channelName], $notification); ``` The notify function receives an array of interests and not arrays of recipients. Basically, I'm already working on the...

Check your error log and show the error message

Are the packages installed on your server. Or check to be sure you have _vendors_ folder in your project root. Run composer install in your server terminal if you can....

Like its been mentioned above; Setting the `'Content-Type': 'multipart/form-data'` explicitly fixes the error. If it doesn't, make sure the type on your Blob is a valid MimeType. In my case,...

> Here is my example for expo applications > > > > > > > > > > ``` > > import * as FileSystem from 'expo-file-system'; > > >...