user1890964
user1890964

Reputation:

IOS facebook get notification

I am developing an iOS application where I want to get notified as soon as a notification comes in my facebook account.

I am able to pull the notification using JSON, where I am polling every 5 minutes.

Can I get automatically something like Push-Notification, not Pull-Notification.

Not a push notification from facebook to my app, but any means by which I can perform this task?

Upvotes: 0

Views: 366

Answers (2)

Joe
Joe

Reputation: 2987

I'm not familiar with Facebook's notification API, but it looks like there might be a way to get a given user's notifications (with some restrictions).

Once you are able to pull a Facebook notification using your server, then you would want, again using your own server, to send the push notification to a user's mobile device using Apple Push Notification Service.

This might require quite a bit of backend work to make functional, or you could use something like Parse or Urban Airship. But first I would read up on Apple Push Notification Service and how push notifications are sent to a mobile device.

Upvotes: 0

Johan
Johan

Reputation: 1951

You will not receive any push notifications from Facebook. Facebook will only send push notification to their own app.

Upvotes: 1

Related Questions