I am using javascript to upload image on my Facebook page. After post request to Facebook page, I am getting id: "651162398833115" and post_id: "650534342229254_651162398833115" in return response.
My question is how can I get the url of my original image from Facebook page with the help of this two id's?
When I download the image manually (By right clicking on image) from my mac, all I got is a decreased quality and small dimension version of my uploaded image. Any suggestion?
This is what I am getting from the response:
{id: "651195638829791", post_id: "650534342229254_651195638829791"}
id: "651195638829791"
post_id: "650534342229254_651195638829791"
__proto__:
constructor: ƒ Object()
hasOwnProperty: ƒ hasOwnProperty()
isPrototypeOf: ƒ isPrototypeOf()
propertyIsEnumerable: ƒ propertyIsEnumerable()
toLocaleString: ƒ toLocaleString()
toString: ƒ toString()
valueOf: ƒ valueOf()
__defineGetter__: ƒ __defineGetter__()
__defineSetter__: ƒ __defineSetter__()
__lookupGetter__: ƒ __lookupGetter__()
__lookupSetter__: ƒ __lookupSetter__()
get __proto__: ƒ __proto__()
set __proto__: ƒ __proto__()
Thanks!
P.S: I have tried couple of old existing ways to retrieve it, but none of them works.