jamesc
jamesc

Reputation: 12837

How do I submit my Facebook graph api action for approval?

I have a mobile phone app, supporting web site and a Facebook account When certain actions are taken on my phone app I interact with my web server. My web server then posts some info to a page on MY Facebook account.

I chose to use the graph api to achieve the posts to my Facebook page but I can see no way of complying with Facebooks requirements for submission.

When I try to submit facebook states the following

No Aggregations created for this Action Type. Please create a completed Aggregation populated with sample data before submitting for review.

Firstly I have no idea what an aggregation is?

Then the docs state

Review your Action Type before submitting for approval. Make sure your definition is complete and your app is testable end-to-end for publishing actions of this Action Type

Which makes sense but how do I get my mobile app to Facebook staff so they can test?

I should add that all works fine in development mode

Upvotes: 0

Views: 1310

Answers (1)

borisdiakur
borisdiakur

Reputation: 12072

If you are trying to create an action via the Facebook Open Graph Beta, you should first look into the documentation here. There you will find all information on actions, objects and aggregations you can generate on the timeline. Further you will have to go to the subsection Open Graph of your App Settings: https://developers.facebook.com/apps/YOUR_APP_ID/opengraph and create your aggregations populated with sample data.

If you want to make a simple post though, then use the Graph API and POST a Post object to the feed connection of the User object. There are a lot of examples and tutorials on the web and a lot of questions on that matter here on stackoverflow.

Upvotes: 1

Related Questions