Android how to post picture to friend's wall with facebook android sdk

前端 未结 2 1820
轮回少年
轮回少年 2021-01-21 11:55

We can post to facebook friend\'s wall a text message, but how can we post an image, a picture to a friend\'s wall using Android Facebook SDK?

When I print out the wall

2条回答
  •  时光取名叫无心
    2021-01-21 12:36

    Using bundle method.

    Bundle params = new Bundle();
            params.putString("message", "Test Post from karthick");
            params.putString("caption", "Karthick kumar");
    
            params.putString("name", "Hai Dude");
            **params.putString("icon", "http://www.facebook.com/images/icons/default_app_icon.gif");**
            params.putString("source", link);
    

    And Then Use... mAsyncRunner.request(wall, params,"POST", new RequestListener());

提交回复
热议问题