Facebook API - 访问用户相册并使用照片
如果已向应用程序授予访问用户相册的扩展权限,是否可以显示一个选择器,用户可以在其中选择一张照片,然后通过表单提交将该照片上传到我的网站?
If extended permissions have been granted to the app to access a users albums, is it at all possible to display a selector where the user can choose one of their photos and then upload that photo to my website via a form submission?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要通过表单提交上传文件,您的多部分表单中需要有
标记。如果您想显示一个选择器,用户可以在其中选择一张照片,则不能使用文件输入或多部分表单。不过,您可以使用 facebook graph api 来获取用户的相册和照片。我试图在此处描述它。看看吧。
To upload a file via a form submission, you need a
<input type="file"/>
tag in your multipart form. If you want to display a selector where the user can choose one of their photos, you cant use file inputs or multipart forms. Hovewer, you can use facebook graph api to get users albums and photos. I tried to describe it here. Take a look at.