Publishing on Facebook user's wall
Posted
by tek3
on Stack Overflow
See other posts from Stack Overflow
or by tek3
Published on 2009-11-09T11:35:05Z
Indexed on
2010/03/26
10:03 UTC
Read the original article
Hit count: 487
Hi all...
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
© Stack Overflow or respective owner