我可以使用 Facebook Graph API 将照片上传到属于粉丝(公司)页面墙的墙吗?
我需要知道是否可以使授权用户可以使用图形 API 将照片上传到公司的粉丝页面(到墙上)。 另外,一旦用户获得授权,是否可以通过 api 成为公司页面(成为粉丝)。
I need to know if it's possible to make it so authorized users can upload photos to a fan page of a company (to the wall) using the graph API.
Also, is it possible to become like (become a fan) of a company page through the api once the user is authorized.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,你可以。您需要使用 Graph API 浏览器 (https://developers.facebook.com/tools/explorer) 并调用
https://graph.facebook.com/{adminfacebookid}/accounts
这将列出您的管理员有权访问的所有页面和应用程序。查找有问题的粉丝页面并复制 accessToken。
接下来,通过单击页面的 id 来获取 albumid,然后将 /albums 添加到
配备此的请求中,然后您可以使用 facebook web 客户端将图像数据发布到 url,
如下所示
Yes you can. You need to obtain your admin access token by using the Graph API explorer (https://developers.facebook.com/tools/explorer) and with a call to
https://graph.facebook.com/{adminfacebookid}/accounts
this will list all pages and apps your admin has access to. Look for the fan page in question and copy the accessToken.
Next get the albumid by clicking on the id of the page, then adding /albums to the request
armed with this you can then post the image data to the url, using the facebook web client
like this