如何在Android手机上使用最新facebookSDK与Android集成Android时显示发布对话框?

时间:2012-01-17 10:49:52

标签: android facebook sdk integration publish

this postthis tutorial的帮助下,我设法将Facebook整合到我的Android应用上,并使用最新的FacebookSDK。我想发布一些内容,所以使用了教程,它的工作完全正常。我唯一的问题是我无法看到发布对话框(如教程中所述),因为我希望它显示在我希望用户修改消息内容的地方。我该怎么做?

以下是我用来发布帖子的代码的快照。

public void postToWall(String message){
    Bundle parameters = new Bundle();
            parameters.putString("message", message);
            parameters.putString("description", "topic share");
            try {
                facebook.request("me");

        String response = facebook.request("me/feed", parameters, "POST");

        Log.d("Tests", "got response: " + response);
        if (response == null || response.equals("") ||
                response.equals("false")) {
            showToast("Blank response.");
        }
        else {
            showToast("Message posted to your facebook wall!");
        }
        finish();
    } catch (Exception e) {
        showToast("Failed to post to wall!");
        e.printStackTrace();
        finish();
    }
}

权限为

private static final String[] PERMISSIONS = new String[] {"publish_stream"};

我还发现有一些名为facebook.dialog()但我不知道在哪里以及如何使用它。

那么,如何显示发布对话框?

1 个答案:

答案 0 :(得分:1)

您使用的代码将在没有Dialog的情况下在墙上发布。

  

我唯一的问题是我无法看到发布对话框(如教程中所述),因为我希望它显示在我希望用户修改消息内容的地方。

使用下面的代码段显示Dialog:

private void post_facebook() {
    Bundle parameters = new Bundle();
    parameters.putString("method", "stream.publish");

    JSONObject attachment = new JSONObject();

    try {
        attachment.put("message", "Messages");
        attachment.put("name", "Check out");
        attachment.put("href", "http://www.google.com");
    } catch (JSONException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

    parameters.putString("attachment", attachment.toString());

    authenticatedFacebook.dialog(Activity.this, "stream.publish",parameters, new TestUiServerListener());
}

    public class TestUiServerListener implements DialogListener {
    public void onComplete(Bundle values) {
        final String postId = values.getString("post_id");
        if (postId != null) {
            new AsyncFacebookRunner(authenticatedFacebook).request(postId,new TestPostRequestListener());
        } else {
            Activity.this.runOnUiThread(new Runnable() {
                public void run() {
                }
            });
        }
    }

    public void onCancel() {
    }

    public void onError(DialogError e) {
        e.printStackTrace();
    }

    public void onFacebookError(FacebookError e) {
        e.printStackTrace();
    }
}

public class TestPostRequestListener implements RequestListener {
    public void onComplete(final String response, final Object state) {
        try {
            JSONObject json = Util.parseJson(response);
            String postId = json.getString("id");
            Activity.this.runOnUiThread(new Runnable() {
                public void run() {
                }
            });
        } catch (Throwable e) {
        }
    }

    public void onFacebookError(FacebookError e, final Object state) {
        e.printStackTrace();
    }

    public void onFileNotFoundException(FileNotFoundException e,
            final Object state) {
        e.printStackTrace();
    }

    public void onIOException(IOException e, final Object state) {
        e.printStackTrace();
    }

    public void onMalformedURLException(MalformedURLException e,
            final Object state) {
        e.printStackTrace();
    }
}

authenticatedFacebook是Facebook对象。