当我尝试更新published
现有照片对象上的字段时,我得到:OAuthException code 1: "An unknown error has occurred."
这是我正在尝试的:
上传图片:
$ curl -X POST -F published=false -F "access_token=$TOKEN" -F file=@soccer.jpg https://graph.facebook.com/$ALBUM_ID/photos
抓取链接并验证链接是否显示给我,但不是我的朋友:
$ curl -X GET "https://graph.facebook.com/v2.6/$PHOTO_ID?fields=link&access_token=$TOKEN"
设置发布位:
$ curl -X POST -F published=true -F "access_token=$TOKEN" https://graph.facebook.com/$PHOTO_ID
{"error":{"message":"An unknown error has occurred.","type":"OAuthException","code":1,"fbtrace_id":"D+Z1Gs9zZat"}}%
根据文档,该字段可用于更新。那么这是文档错误还是 API 错误?
我正在尝试上传一堆图片,published=false
然后通过更新已发布的字段来同时发布它们。