我正在开发一个 appon blackberry 平台,在该平台上我必须在用户墙上发布消息...我能够获取会话 ID...但不知道如何进一步进行...
我正在做这样的事情......
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);
我将此作为发布数据发送到以下网址:
http://api.facebook.com/restserver.php?
我得到的响应包含:101 Invalid API key