Need a way for Facebook to render images in a wallpost when the wall post is made through the Open Graph API.
When I copy and paste this link into the Facebook UI at facebook.com, and post it that way, the wall post ends up looking like this:
But, when I try to access my wall programmatically using the Facebook Python library, using the below code, the image does not render:
graph = GraphAPI(valid_access_token)
graph.put_wall_post(message='https://s3.amazonaws.com/dotellapptest/review_photos/enlarged/811..OJUzXI76Rw6J2Zj_vZyWNw.png')
Yields this:
How can I use the Facebook API to embed an image in my wall post?