Ankit Suthar
Ankit Suthar

Reputation: 181

IBM Bluemix push notification through PHP code

I am new with IBM Bluemix and I want to add PHP code for sending push notifications on both iOS and Android devices.

My app is built with the Xamarin platform for both type of mobile devices.

The backend is created in PHP with the Codeigneter framework.

I see in the Dashboard there is direct user interface for sending a push in Bluemix, but I want to send a Push on run-time for example: some user sending a friend request and the other user automatically receiving a push notification.

Upvotes: 0

Views: 156

Answers (1)

joe
joe

Reputation: 2488

There is not a PHP SDK library, but you could accomplish your behavior by checking out the Push Notifications Swagger documentation:

https://mobile.ng.bluemix.net/imfpushrestapidocs/

First you would register your mobile app so it receives push notifications (using the Android or iOS Client SDKs available here). Then you could have your backend send the push notification to a specific device on the event that a friend request is sent by using the REST API (as outlined in the Swagger docs).

Upvotes: 0

Related Questions