Fb Graph Api Get Invitations to Event - facebook-graph-api

I am hosting a private Facebook event. I'm trying to use Facebook's graph api to list everyone that was invited to this event. Further, it would be great if I could see who invited who on that list of invited users. Any ideas on how to accomplish this?

Related

Create account test Instagram for API graph messenger instagram standard access

For getting the permission of the scope Instagram_manage_messages to "advanced access", Facebook requests a video to show them how to utilize the API Messenger Instagram standard access. For that, we need a page of user test Facebook linked into an Instagram Account.
However, the linked page test with an account IG does not work.
Does someone know how to create a user test Instagram who could be linked into page user test facebook, otherwise the API does not work from user public, So I have trouble showing them the processing of using the API.

Getting the private instagram users followers count via API

This isn't a new question. But the old topics ended in 2016 and I guess there must be a new solution to get the public meta data like profile pictures and follower data of a private instagram account.
The new api has the endpoint: https://developers.facebook.com/docs/instagram-basic-display-api/reference/user but this is only working with the correct userid - how to get this by username?
The old endpoints aren't working anymore and I am thinking about how to cerate a service like: https://www.instafollowers.co/instagram-follower-count with an APP-Token by the graph api or is there another solution to get anybodys instagram information (private and business and creators) account.
Hope for answers. :)
Consider to use thee business discovery API in Instagram Graph API.
Basically just create a facebook page and connect to an instagram business/creator account.
Then you are able to get the other users details by their ig username.
Visit https://developers.facebook.com/docs/instagram-api/reference/user/business_discovery for more details.

Facebook Graph api - post to friends timeline issue

when I tried to post to my friends timeline using facebook graph api, I got
{"error":{"message":"(#200) Feed story publishing to other users is disabled for this application","type":"OAuthException","code":200}}
Enabling something while creating access_token will resolve this problem ?
If so what should I enable.
Thanks,
Padmaprasad G
This feature has been removed the 6th February : http://developers.facebook.com/roadmap/completed-changes/
Look here how to do it Facebook App: Will fb.api method post on friend's wall?
Yes, this was announced few months back and took effect on Feb 6th - http://developers.facebook.com/roadmap/completed-changes
Removing ability to post to friends walls via Graph API
We will remove the ability to post to a user's friends' walls via the Graph API. Specifically, posts against [user_id]/feed where [user_id] is different from the session user, or stream.publish calls where the target_id user is different from the session user, will fail. If you want to allow people to post to their friends' timelines, invoke the feed dialog. Stories that include friends via user mentions tagging or action tagging will show up on the friend’s timeline (assuming the friend approves the tag). For more info, see this blog post.
The workaround is to use the Feed Dialog which allows users to post the same content, but choose the user they want to post it to.

Why are Facebook Graph API permissions so weird?

I have created a Facebook page. On the page I have created some events and some notes. Everything as public as possible. Now I want to expose the data on my website using the Graph API.
The general data of the page is accessable without any access token, which is nice.
The event data is accessable using a FB app with app_id and app_secret.
For the notes you need a "user access token", which isn't an option, because not all of the website visitors have a FB account.
Why must it be so complicated? Does anyone have a solution?
Greetings
Allan

How do I receive Facebook notifications via the API when the newsfeed has changed?

I am using the facebook graph api and c# sdk to make a desktop facebook application to notify users of new posts and messages in facebook. I can get the news feed (/me/home, in graph api talk), as well as messages, events, pokes, etc, but I have not been able to retrieve notifications such as when one of my friends "friends" someone else, or when one of my friends changes their profile picture. What does facebook call those notifications anyway? So, are those things available with the graph api? What about REST?
You can do such things with Facebook Real-time Updates. You can subscribe to events on objects (user, page or permissions) and Facebook will monitor changes on these object and call a callback url when changes happen.
You can watch changes of fields (name, email, ...) but also connections (friends, likes, inbox, ...).
Let's say you subscribe to the friends connection real-time update for a user. Each time this user will have a new friend, a URL of yours will be called notifying you about the event.
Hope that helps.