chuysbz
chuysbz

Reputation: 1500

App request/Invite through Facebook API using PHP

I'm building an app and the client wants the following logic:

  1. User logs in to the app.
  2. User selects a Friend.
  3. User selects a gift that the User will send to his Friend.
  4. User writes a message to his Friend.
  5. Friend receives a SECRET notification about the gift.

With "SECRET" I mean that Friend will not be able to see WHO is the User that sent the gift.

So the concrete question is how to send a notification to the FRIEND without a clue about the USER that sent it? I think is not possible but I want to be sure and check with the experts.

And if it's not possible, what do you recommend to accomplish something like this? Should I use the app request dialog and hope that the Friend will see it? Is there any other FB API tool I can use?

I really appreciate your help.

Upvotes: 0

Views: 1988

Answers (2)

Tobi
Tobi

Reputation: 31489

With the beta Notification API something similar would be possible, but only if the receiver has authenticated your app: https://developers.facebook.com/docs/games/notifications/#impl

Upvotes: 0

Syed I.R.
Syed I.R.

Reputation: 6230

What you're trying to achieve is not possible with FB's API. As explained already by @CBroe. You can send a request notification if the user uses your app. However, You can do one thing but that won't be completely anonymous.

You can send the friend a notification from the user and make it just an invite to try the application and after the friend uses your app (authenticates), your app can then send a notification and say someone left a SECRET message for them. This could be after few hours or instant, Whatever you/your client prefers. However as i said, this won't be completely anonymous nor it's hard to guess who left the message unless the friend isn't smart enough to know who that could be.

Upvotes: 2

Related Questions