我正在开发一个Android应用程序,需要在单击按钮时自动在用户的Facebook墙上发布。共享按钮不需要任何用户交互,只需按一下按钮就可以在墙上发布预定义的文本。
无论如何这可以做到吗?这种功能的任何链接?
注意:条件是已经在设备中安装了Facebook应用程序,用户必须在Facebook应用程序中登录(以简化操作并避免身份验证程序)。
谢谢。
答案 0 :(得分:0)
有一种简单的方法可以做到这一点:
private void publishStory(String title, String youneed2, String youneed3) {
Session session = Session.getActiveSession();
if (session != null){
// Check for publish permissions
List<String> permissions = session.getPermissions();
if (!isSubsetOf(PERMISSIONS, permissions)) {
pendingPublishReauthorization = true;
Session.NewPermissionsRequest newPermissionsRequest = new Session
.NewPermissionsRequest(getActivity(), PERMISSIONS);
session.requestNewPublishPermissions(newPermissionsRequest);
return;
}
Bundle postParams = new Bundle();
postParams.putString("name", title);
postParams.putString("caption", "bla bla");
postParams.putString("description", "bla bla");
postParams.putString("link", "http://www.yoursite.com");
postParams.putString("picture", "http://linktoyourimage.com");
Request.Callback callback= new Request.Callback() {
public void onCompleted(Response response) {
JSONObject graphResponse = response
.getGraphObject()
.getInnerJSONObject();
String postId = null;
try {
postId = graphResponse.getString("id");
} catch (JSONException e) {
Log.i(TAG,
"JSON error "+ e.getMessage());
}
FacebookRequestError error = response.getError();
if (error != null) {
debug.print("erreur");
}
}
};
Request request = new Request(session, "me/feed", postParams,
HttpMethod.POST, callback);
RequestAsyncTask task = new RequestAsyncTask(request);
task.execute();
}
}
不要忘记您需要有效的令牌,然后拨打PublishStory()
并使用捆绑包构建您的帖子。
希望这个帮助
修改强>
在onCreate()
之前添加这些行private static final List<String> PERMISSIONS = Arrays.asList("publish_actions");
private static final String PENDING_PUBLISH_KEY = "pendingPublishReauthorization";
private boolean pendingPublishReauthorization = false;