php - How to invite a users friends to an event? Facebook Graph API -
I have an application using the graph API I am making it an event for the user, but the user is coming to Facebook Instead the user would like to invite his friends. Does anyone know of this request that I have to send friends IDs to invite them with the old APIs? Or if it is also present? I am getting very detailed information in API documents is unclear. Thanks!
Besides, the side question, can you send an event photo with the post? I do not see any emphasis on how to submit a photo with incident creation. Thank you.
This is actually possible with graph API, especially invite
Connection to event
object:
POST / EVENT_ID / invite / USER_ID
Invite a user one accident. If the request is successful, then correct
returns.
Posts / EVENT_ID / Invite? Users = USER_ID1, USER_ID2, USER_ID3
Invite multiple users to an event If successful, return true
.
You will need permission for create_event
More information is available.
Comments
Post a Comment