Java 安卓通过Facebook发布状态

Java 安卓通过Facebook发布状态,java,android,facebook,Java,Android,Facebook,我已将我的应用程序状态更新发布给用户。在我添加消息后的所有内容之前,它下面会有一个小东西,说这是通过这里的应用程序发布的,但现在它仍然说,但没有链接到我的应用程序。我是否遗漏了某个值或覆盖了某些内容 Bundle bundle = new Bundle(); bundle.putString("message", "Message above everything"); bundle.putString("from", "App i

我已将我的应用程序状态更新发布给用户。在我添加消息后的所有内容之前,它下面会有一个小东西,说这是通过这里的应用程序发布的,但现在它仍然说,但没有链接到我的应用程序。我是否遗漏了某个值或覆盖了某些内容

        Bundle bundle = new Bundle();


           bundle.putString("message", "Message above everything");
           bundle.putString("from", "App id goes here???");
           bundle.putString("link","Website");
           bundle.putString("name","Title");
           bundle.putString("description","Description");

           bundle.putString("picture", "http://image url");
           bundle.putString(Facebook.TOKEN, accessToken);

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

访问令牌决定帖子的来源。因此,请检查访问令牌是否包含您的应用程序id(在facebook上标识您的应用程序id的唯一id)或not@Max发布一些你需要如何显示的图片?@Venky抱歉,我不完全理解你的意思。目前,它正在发布一些文本,下面是一个链接,左侧有一个描述和一个图像。@Max发布一些图像,以便您需要如何在FB中显示您的文章。