Hello Friends
I am using fb_graph to post on user wall
“GitHub - nov/fb_graph: This gem doesn't support FB Graph API v2.0+. Please use fb_graph2 gem instead.”
As mentioned in the document I am using the same code
me = FbGraph::User.me(current_user.fb_token)
me.feed!(
:message => ‘Updating via FbGraph’,
:picture => ‘https://graph.facebook.com/matake/picture’,
:link => ‘GitHub - nov/fb_graph: This gem doesn't support FB Graph API v2.0+. Please use fb_graph2 gem instead.’,
:name => ‘FbGraph’,
:description => ‘A Ruby wrapper for Facebook Graph API’
)
But somehow I am getting the following error:
FbGraph::Unauthorized: FbGraph::Unauthorized
Could anyone had faced the similar issue? I’ll be really thankful for
any help
Thanks
Abhis