Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I created a Facebook app that I will use to programatically post information to Facebook. I've got it working so that I can post to my wall, but not the page I'd like it to go to (for which I am 1 of 2 administrators).

this posts to my page just fine:

FacebookClient facebookClient = new DefaultFacebookClient("<ACCESS_TOKEN>"); 
FacebookType publishMessageResponse = facebookClient.publish("<MY_FB_NAME>/feed", FacebookType.class, Parameter.with("message", "Testing..."));

but if I try to post the page, I get an error:

com.restfb.exception.FacebookOAuthException: Received Facebook error response of type OAuthException: (#200) The user hasn't authorized the application to perform this action

The code is the same, except I replace my name with the page's ID:

FacebookClient facebookClient = new DefaultFacebookClient("<ACCESS_TOKEN>"); 
FacebookType publishMessageResponse = facebookClient.publish("<THE_PAGE_ID>/feed", FacebookType.class, Parameter.with("message", "Testing..."));

The app is listed as one of the apps for the page.

Thanks for any help with this, Frank

share|improve this question

1 Answer

up vote 0 down vote accepted

Are you sure you have the correct (publish_stream) Permission?

You'll need that to post as the user to places other than their own profile.

share|improve this answer
I don't think so, the code is just those 2 lines. I'll look into that, but if you can't point me in the right direction on setting that permission, I'd appreciate it. Thanks. – Frank Sep 28 '12 at 18:21
read the Authentication docs - it explains all the auth flows – Igy Sep 28 '12 at 18:23
to clarify - posting is done as the app (not as the user). – Frank Sep 28 '12 at 19:01
What do you mean 'as the app'? – Igy Sep 28 '12 at 20:20
igy - i may be confusing things due to my lack of knowledge - it's just the message will say "via <appname>" under the message... – Frank Sep 28 '12 at 21:51
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.