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 am developing an appon blackberry platform in which i hve to publish a message on users wall...i am able to get session id...but dont know how to proceed further...

i am doing something like this...

enter code here
URLEncodedPostData post = new URLEncodedPostData(URLEncodedPostData.DEFAULT_CHARSET, false);
		post.append("method", "stream.publish");
		post.append("message", "published through the Facebook API");
		post.append("session_key", sessionKey);
		post.append("attachment", null);
		post.append("action_links", null);
		post.append("target_id ", null);
		post.append("uid ", null);

i am sending this as post data to following url :

        http://api.facebook.com/restserver.php?

and the response i am getting contains : 101 Invalid API key

share|improve this question

1 Answer

You should try to register your application, get API key and use in in requests.
Register and go www.facebook.com/developers/createapp.php

share|improve this answer

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.