使用 Graph API 将多张照片上传到 Facebook
在我的 Titanium 移动应用程序中,我尝试将多个图像发布到 Facebook 相册。但对我来说,单个图像上传工作正常,但多个图像则不行。这是我的示例代码。 提前致谢。我的 Titanium SDK 1.7.5 和我的平台 ios
var media = [];
var file1 = Titanium.Filesystem.getFile(currIamge1);
var blob1 = file1.read();
var file2 = Titanium.Filesystem.getFile(currIamge2);
var blob2 = file2.read();
media.push({'message': 'House1', 'picture': blob1});
media.push({'message': 'House2', 'picture': blob2});
var path = album_id+'/photos';
Titanium.Facebook.requestWithGraphPath(path, media, 'POST', function(e){
if (e.success) {
alert("Success! From FB: " + e.result);
} else {
if (e.error) {
alert(e.error);
} else {
alert("Unkown result");
}
}
});
In My Titanium Mobile Application I am trying to post multiple image to Facebook album. But for me single image upload works fine but multiple image does not. Here is my sample code.
Thanks in Advance. My Titanium SDK 1.7.5 and my platform ios
var media = [];
var file1 = Titanium.Filesystem.getFile(currIamge1);
var blob1 = file1.read();
var file2 = Titanium.Filesystem.getFile(currIamge2);
var blob2 = file2.read();
media.push({'message': 'House1', 'picture': blob1});
media.push({'message': 'House2', 'picture': blob2});
var path = album_id+'/photos';
Titanium.Facebook.requestWithGraphPath(path, media, 'POST', function(e){
if (e.success) {
alert("Success! From FB: " + e.result);
} else {
if (e.error) {
alert(e.error);
} else {
alert("Unkown result");
}
}
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论