如何使用最新的Android版Facebook SDK在Facebook上发布图像和URL? [英] How to publish image and URL on Facebook using latest facebook SDK for Android?

查看:292
本文介绍了如何使用最新的Android版Facebook SDK在Facebook上发布图像和URL?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想创建一个Facebook对话框,如该链接的最后一个图像所示.但是我看不到默认消息,也看不到图像.我在

I want to create a Facebook dialog as shown in the last image of this link. But I am not able to see the default message and also not able to see the image. I wrote this code with help of this link.

这是相同的代码:

public void postToWall(String message) {

    Bundle parameters = new Bundle();
    parameters.putString("method", "stream.publish");

    JSONObject attachment = new JSONObject();

    try {

        attachment.put("app_id", APP_ID);
        attachment.put("href", MY_URL);
        attachment.put("picture", MY_PICTURE_URL);
        attachment.put("name", NAME_FOR_URL);
        attachment.put("caption", CAPTION_FOR_URL);
        attachment.put("description", DESCRIPTION_FOR_URL);
        attachment.put("message", MESSAGE);

    } catch (JSONException e) {
        e.printStackTrace();
    }

    parameters.putString("attachment", attachment.toString());
    facebook.dialog(this, "stream.publish",parameters, new TestUiServerListener());


    }

我想念什么?

推荐答案

尝试使用此代码段发布图像以及其他详细信息:

Try this Snippet for Posting Image along with additional Details :

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

    JSONObject attachment = new JSONObject();

            // for adding image to Dialog       
    try {
        JSONObject media = new JSONObject();
        media.put("type", "image");
        media.put("src", "Any Image Link");
        media.put("href", "Any Image Link");
        attachment.put("media", new JSONArray().put(media));
    } catch (JSONException e1) {
    }

            // End if Image attachment

            // for adding Message with URL link
    try {
        attachment.put("message", "Messages");
        attachment.put("name", "Check out");
        attachment.put("href", "http://www.google.com");
    } catch (JSONException e) {
    }

    parameters.putString("attachment", attachment.toString());
    authenticatedFacebook.dialog(Settings_View.this, "stream.publish",parameters, new TestUiServerListener());
}

这篇关于如何使用最新的Android版Facebook SDK在Facebook上发布图像和URL?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆