0

Is it possible to post an existing photo on user timeline via Facebook API, without creating new album?

When I use

$userdata_p = $facebook->api('/me/feed', 'post', array(
                               'message' => "some text",
                               'source' => '@' . realpath(path of image)
                             ));

With this code, I create an album and post the photo and the text on my timeline. But I don't want to create new album, instead I want to get the photo from existing album(photo) and post it on my timeline.

4

1 に答える 1