0
I’m performing the creation of a Facebook post with a photo with the following code:
FB.api(
'/me/photos',
'POST',
{"url": imagem,"message": texto_publicaco},
function(response) {
alert("Postagem criada");
}
);
The variable imagem
contains the URL to which I uploaded to the server of the site I am working on. The image is in JPG and the server loads normally.
But when I post on facebook the image quality is VERY low.
Is there any way to improve even a little the quality of the image that is loaded there?