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 didn't know Java + Facebook integration would cost an arm and a leg. Does anyone have a sample code to post to Facebook page as admin?

I understand the OAuth process, I just need to send an OAuthRequest with my text using scribe lib . And if possible, How to send a byte[] (a picture).

request.addBodyParameter("status", "Testing: Updating my facebook status through Java"); service.signRequest(accessToken, request);
Response response = request.send();

I have tried the above code from scribe example but I get {"error":{"message":"(#100) Can only call this method on valid test users for your app","type":"OAuthException","code":100}}

Thanks.

share|improve this question
This answer can perhaps be of help: stackoverflow.com/questions/3627684/… – Gunnar Karlsson Apr 26 '12 at 0:27
Thanks @GunnarKarlsson it seems convoluted but I guess that's all I can get, will have a look. Thanks – Babajide Prince Apr 26 '12 at 8:19

1 Answer

I believe you need to generate an application token (assuming you have all the proper permissions) using the app secret and using this newly created token in your posts, etc.

share|improve this answer
That's not what I'm looking for but thanks. I'm looking for sample code using scribe. I understand the theory behind it. – Babajide Prince Apr 26 '12 at 8:20

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.