Facebook Login By Sdk But Post Issue
This is what my logcat shows as a response { Response: responseCode: 403, graphObject: null, error: { HttpStatus: 403, errorCode: 200, errorType: OAuthExce
Solution 1:
I guess you need to issue an HTTP POST to that endpoint to publish a new feed story, facebook provides the "method=post" GET parameter to "fake" a post, this might work for you.
https://graph.facebook.com/USER_ID/feed?access_token=TOKEN&message=HelloFacebook&method=post
w.r.t to response you will get an id as :
{"id":"499801468_1001264776039"}
for more details please refer
for GraphAPI - http://developers.facebook.com/docs/reference/api/#publishing
Also please check your permission tag
Post a Comment for "Facebook Login By Sdk But Post Issue"