I am trying to post a single image post via facebook API and I cannot. In the new documentation https://developers.facebook.com/docs/graph-api/reference/v2.1/user/feed there is no field for the image.
If I try to use the "object_attachment" field, only a small sketch appears, and the post - style, as a shared link.
If I try to use the picture field and use the URL of the photo on the Internet, the result will be the same. I canโt post a โpictureโ from local, like here:
$post['picture'] = '@' . realpath($image);
an error appears: "The image URL is not formatted properly."
I just used a free web application to make a photo message and the result is fine (see attached image)
Please tell me how can I make a message with the exact result?

source share