我正在尝试从我的 Android 应用程序在 Facebook 墙上发布一些预定义的消息和图像。
我做了什么
我使用 openssl 创建哈希键并将其放入我Facebook developer app(Native Android App)
还设置的包名称和活动名称中。然后我在我的应用程序中使用 Facebook 应用程序密钥。
我完成了所有编码并运行我的应用程序,它要求我登录,然后我输入用户名和密码,但是当我点击发布消息按钮时,它显示Facebook
状态页面,我需要手动输入我不想要的状态。我想在不打开此页面的情况下直接在墙上发布预定义的消息。
这是我的代码供您参考。
private void postStatusUpdate() {
if (canPresentShareDialog) {
FacebookDialog shareDialog = createShareDialogBuilder().build();
uiHelper.trackPendingDialogCall(shareDialog.present());
} else if (user != null && hasPublishPermission()) {
Bundle postParams = new Bundle();
GetSet gs = new GetSet();
postParams.putString("name", gs.getFacebook_menu_name());
postParams.putString("caption", gs.getFacebook_hotel_name());
postParams.putString("description", "My rating for this menu is "+gs.getFacebook_menu_rating());
//postParams.putString("link", "https://developers.facebook.com/android");
postParams.putString("picture", gs.getFacebook_url_address());
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) {
Toast.makeText(FacebookActivity.this
.getApplicationContext(),error.getErrorMessage(),Toast.LENGTH_SHORT).show();
} else {
Toast.makeText(FacebookActivity.this
.getApplicationContext(),
"Details suuccesfully post on your wall",
Toast.LENGTH_LONG).show();
}
}
};
Request request = new Request(Session.getActiveSession(), "me/feed", postParams,
HttpMethod.POST, callback);
RequestAsyncTask task = new RequestAsyncTask(request);
task.execute();
} else {
pendingAction = PendingAction.POST_STATUS_UPDATE;
}
}
这里有两个条件。
一个。如果我的手机没有 Facebook 应用程序,那么它可以正常工作。无需手动输入即可在 Facebook 墙上发布消息
乙。但是,如果我在我的手机中安装了 Facebook 应用程序,那么它会打开状态页面,我在其中手动输入了我不想要的消息。
我不明白必须做什么。因为我在某处阅读 Facebook 不允许在不打开状态页面的情况下发布消息。
请给我任何参考或提示。