使用 Graph API 将多张照片上传到 Facebook

发布于 2025-01-06 13:57:39 字数 752 浏览 0 评论 0原文

在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文