webkul
webkul

Reputation: 2864

facebook application update

I developed a simple application on Facebook using PHP and I want to know how the people can add this application, and after adding the application a update is generated (e.g vipin join this application).

Thanks

Upvotes: 1

Views: 154

Answers (2)

Vineel Shah
Vineel Shah

Reputation: 1058

Yup, no more "Dude just added this app" messages in the newsfeed. However, Facebook will occasionally show "Dude uses the 'Thing' application" messages under the "highlights" section of a user's homepage. There's nothing you can do to encourage or discourage it -- it just happens.

Upvotes: 0

Kevin Montrose
Kevin Montrose

Reputation: 22571

Users don't add applications anymore. The closest they can get is bookmarking, which your application receives no notice of. The closest thing you can get to checking as a developer is checking is Users.isAppUser.

You also don't receive notice when a user grants/rejects permissions (which is generally a prerequisite to viewing your application).

Basically, you have to post notices and create feed entires in direct response to user action (unless they've granted you a perpetual session).

The old model of actually adding applications was all kinds of broken from a user experience point-of-view, so Facebook basically pulled the plug on it.

Upvotes: 1

Related Questions