How can I post link on facebook from android app using FB API?

前端 未结 2 877
南方客
南方客 2021-01-06 12:30

I look all the internet and couldn\'t find how do I post link with a specific picture on facebook wall using fb sdk\\api.

I know that this is part of the code that I

2条回答
  •  生来不讨喜
    2021-01-06 12:58

    I'm guessing that your problem is that you are using the stream.publish path which got deprecated:

    Please note: We are in the process of deprecating the REST API, so if you are building a new application you shouldn't use this function. Instead use the Graph API and POST a Post object to the feed connection of the User object

    instead do this:

    facebookClient.dialog(MainActivity.this, "feed", parameters, new DialogListener() {
    ...
    
    });
    

提交回复
热议问题