rolinger

Results 139 comments of rolinger

Ok...so I finally got cordova-plugin-facebook to install cleanly...but now the same functions that work for Android are not working for iOS. Specifically when I do the first call to `facebookConnectPlugin.getLoginStatus`...

@AndyGaskell - last time I got my hands dirty with this package I recall that FCM didn't return errors for bad device IDs. In my apps FCM simply just pulls...

Well since the zombie apocalypse has hit us all maybe we have some time to provide migration path in the project. I think it should be easy enough to do...

@AndyGaskell - for sending notifications, our methods allow for adding as many recipients via `addRecipient` and another method that allows for passing an array of recipients. Sending notifications allows for...

@VanManuel83 - could you elaborate on the request please. I am not fully understanding the request. Provide an example of what you are looking to do.

Thanks for clarifying. Unless I am misunderstanding the request, you can already do this, up to 5 topics per message: ``` $notification = $client->pushNotification($title, $body, ""); $notification->addTopic("mytopic_all"); $notification->addTopic("mytopic_nursery"); $notification->addTopic("mytopic_year1"); $notification->addTopic("mytopic_year2");...

@VanManuel83 - I don't understand. Isn't that what you want....to send messages on both Sport AND Food?

@AndyGaskell @rayansys - yeah, I don't understand the request. TopicIDs are managed by php-fcm. Can you point us to some documentation about what you are referring to please?

@AndyGaskell - I did a quick read, it looks like `channel ID` allows you to setup different types of notifications within your app which then allows users to turn off/on...

No error actually. Just nothing happens. $response = $client->topicSubscribe('topic',$devID) ; print_r($response) ; just returns the whole object and the topic does not get registered (used a new topic just to...