Iam working on a rails application and using FBGraph to post on Facebook. The facebook post happens when a person clicks on a Want button. Iam using the following code to post on a user’s wall:
if facebook_post.user.granted_publish_actions?
me = FbGraph::User.me(facebook_post.user.oauth_token)
me.feed!(
:picture => facebook_post.picture_url,
:link => facebook_post.link,
:name => facebook_post.name,
:description =>facebook_post.description
)
end
This code doesn’t call Open Graph API to post on a user’s wall. But still my app got the alert which is basically a warning for the apps that call Open Graph API to post on user’s wall.
Please advice if Iam missing something.
Many thanks.
The alert is sent because your app setting for “February 2013 Breaking Changes” is disabled. If you have nothing to modify, just go to app’s Advanced setting page and enable this.
The URL for setting page is something like “https://developers.facebook.com/apps/APP_ID/advanced“