嗨,我正在编写 Facebook 应用程序,在这里我使用 Post Object 来发布 Friends Wall 的消息,我也可以发布,
但我的问题是我在点击我给出的文本(希望....)时也得到了图像链接,正如你在下面的屏幕截图中看到的那样
所以在这里我需要一个小帮助,我怎样才能删除这个链接......
我在 Strings.xml 中给出了这条短信:
<string name="app_action">Wishing you a birthday as special as you are! Hope this is a new beginning to lots of great things and happy moments in your life. Wish you a fabulous birthday!</string>
图片链接:
public static final String HACK_ICON_URL = "http://i1.pickupflowers.com/images/puf/images/product/large/carnations-lilies-and-roses.jpg";
我的代码:
Bundle params = new Bundle();
params.putString("method", "fql.query");
params.putString("query", query);
FacebookUtility.asyncRunner.request(null, params, new FacebookRequestListener(FacebookRequestListener.FRIENDS, facebookRequest));