使用Facebook sdk上传base64编码的图像?
使用 Facebook PHP SDK 3.1.1 可以直接上传 base64 编码的图像而不保存它吗?
$facebook->setFileUploadSupport(true);
$facebook->api('/me/photos', 'POST', array(
'source' => '@/mycoolpic.png', // No need to use FS, base64 encoded image
'message' => "I'm cool",
));
It's possible to upload base64 encoded images directly without saving it using Facebook PHP SDK 3.1.1?
$facebook->setFileUploadSupport(true);
$facebook->api('/me/photos', 'POST', array(
'source' => '@/mycoolpic.png', // No need to use FS, base64 encoded image
'message' => "I'm cool",
));
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在 PHP 中执行以下操作:
You can do as follow in PHP :
不,据我所知,或通过搜索发现。确保在图像名称周围使用 realpath(),以给出图像的绝对路径。
No, not that I have been aware of, or found out searching. Make sure you use realpath() around the image name, to give the absolute path to the image.