Can I create Facebook Life Events via OpenGraph API? - facebook

Is it possible to create a Facebook Life Event via Open Graph API? Is it?

No, it's not possible. If it's not in roadmap and it's not in the documentation (documentation should reflect the latest changes to the API now, it's dynamically updated), then it's not available.

Related

create facebook event from my website

I need to create an event on Facebook directly from my website.
I downloaded facebook SDK v4, I created the connection to my facebook application, now how can I create the event?
I tried several guides but refer to the older versions of the SDK.
now in Graph API -> reference -> event is written:
Publishing
You can not create events via the Graph API.
Can you help me?
The message should be clear enough, it is not possible to create events with the Graph API: https://developers.facebook.com/docs/graph-api/reference/v2.3/event#publish
This change happened with v2.0 of the API: https://developers.facebook.com/docs/apps/changelog#v2_0_permissions

How can you ban a user from application's discussion board?

I can figure out how to ban users from most pages' discussion boards using the Graph API, but I can't find any way to do this for application pages. Is it possible?
You can use old api calls with new Graph API
You have to use this API Call: http://developers.facebook.com/docs/reference/rest/admin.banUsers/
And here is how you can use it: http://developers.facebook.com/docs/reference/rest/

How do I publish an activity on facebook using the Graph API

The old Facebook Legacy REST API had a function dashboard.publishActivity, however the new Graph API only allows messages to be posted on /me/feed.
Is there a way to send activities using the Graph API?
As mentioned in http://developers.facebook.com/blog/post/552/ Facebook "have removed the section which displayed the News that developers published via the Dashboard APIs in the Games Dashboard". Therefore the dashboard.publishActivity function no longer provides any useful functionality. My recommendation is to switch to either using stream posts or to Requests 2.0, as these will provide the same sort of distribution that you're looking for.

What is the equivalent of status.get in Facebook Graph API

Can anyone tell me what is the equivalent of status.get of the Old REST API in the new Graph API.
The page http://developers.facebook.com/docs/reference/rest/ says "If you are new to the Facebook Platform, we recommend you use our new Graph API instead." so I'm trying to figure out the newer version.
Basically, what I want is to retrieve the status messages that a user has updated.
Thanks
http://graph.facebook.com/<USER_ID>/statuses
You can also use FBML or FQL.

Facebook: Is there a way to check that I have certain permissions?

I started developing a Facebook app using the new Graph API.
I want to check if I have certain permissions, (say publish_stream for example) for a certain user. I know that the old REST API had users.hasAppPermission, but I don't see anything parallel to that in the new Graph API.
How can I do this?
You will need to run FQL on permissions table. If you are using JS SDK you can run it with FB.Data.query().
Yes. In the new Graph API use "/[user]/permissions". See also detailed explanation here and here.