Picture posting NOT working with facebook Graph API anymore

前端 未结 6 1825
逝去的感伤
逝去的感伤 2020-12-06 13:41

Picture posting NOT working with Facebook Graph API

The message is posted but the picture is NOT.

I am using the Graph API to post to the wall on Facebook.

6条回答
  •  一向
    一向 (楼主)
    2020-12-06 13:59

    Ken, but what if you want link= to point to something else? this works:

    curl -F \
         "picture=http://tycho.usno.navy.mil/gif/moons/m146.gif" \
         -F "message=you're looking great tonight!" \
         -F "name=Current Moon Phase" \
         -F "link=http://www.calculatorcat.com/moon_phases/phasenow.php" -F caption="How the moon appears tonight" \
         -F "access_token=111111111111111|2222222222222222222222222|33333333333333333333456n" \
         "https://graph.facebook.com/215958041750734/feed"
    

    you can see result at: https://www.facebook.com/pages/The-Moon/215958041750734

提交回复
热议问题