Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
通常我用这个代码上传照片:
$facebook->api('/me/photos', 'POST', array( 'source' => '@' . realpath(IMGDIR), 'message' => TEXT )
如果我使用此代码上传照片,照片会上传到“APPNAME 照片”中,但我想将照片上传到“墙照片”中。我怎样才能做到这一点 ?对不起我的英语不好!
不能直接上传到墙相册吗?例如,使用您的代码,更改/me/photos为/<ALBUM ID>/photos- 这就是您对任何通用相册的操作方式,我不确定墙壁相册是否像这样工作
/me/photos
/<ALBUM ID>/photos
向 /me/albums 发出 GET 请求并获取用户的专辑列表,您应该可以上传到其中的任何一个
你必须测试
if($album['type'] == 'wall')