stef
stef

Reputation: 27769

Sending Facebook messages through their API - possible?

I'm building a web app for a client where members of general public can create an account. Client would like to be able to use my app to send Facebook messages to those members.

Note that my app is a standard LAMP site and NOT a facebook application, nor is there the desire to create one; delivering messages to members' FB inbox is the only goal.

Is this possible, using the FB API or any other way?

Upvotes: 1

Views: 578

Answers (2)

serg
serg

Reputation: 111325

What you would need to do is:

  • Register facebook app to get access to FB API. You don't need to have actual facebook app, just use received API key on your standalone site.
  • Create authentication process on your site so users would be able to connect with your site through facebook.
  • Ask users for additional extended permissions during authentication to access their email, as it is not something that could be accessed without user's explicit permission.

That's the bare minimum for this task.

Upvotes: 1

BeRecursive
BeRecursive

Reputation: 6376

In short the answer is no. Facebook do not give you the ability to do this to prevent spam. You could post to all of your user's feeds however?

Upvotes: 1

Related Questions