假设您想在纯 JavaScript/JQuery 中执行此操作 - 您需要使用 iframe 作为表单的目标,有一个警告 - 您将无法使用返回数据(调用的 ID/成功) 因为相同的原产地政策。
首先创建一个表单来保存文件输入和您希望设置的任何其他变量:
<form id="upload-photo-form">
<input name="source" id="source" size="27" type="file" />
<input name="message" id="message" type="text" value="message example please ignore" />
</form>
这是使用的主要函数,它创建一个 iframe,指向要使用它的表单,然后使用 FQL 从相册中检索最新照片。
function fileUpload(form, action_url, div_id) {
// Create an iframe
var iframe = document.createElement("iframe");
iframe.setAttribute('id', "upload_iframe");
iframe.setAttribute('name', "upload_iframe");
iframe.setAttribute('width', "0px");
iframe.setAttribute('height', "0px");
iframe.setAttribute('border', "0");
iframe.setAttribute('style', "width: 0; height: 0; border: none;");
// Add to document.
form.parentNode.appendChild(iframe);
window.frames['upload_iframe'].name = "upload_iframe";
iframeId = document.getElementById("upload_iframe");
// Add event to detect when upload has finished
var eventHandler = function () {
if (iframeId.detachEvent)
{
iframeId.detachEvent("onload", eventHandler);
}
else
{
iframeId.removeEventListener("load", eventHandler, false);
}
setTimeout(function() {
try
{
$('#upload_iframe').remove();
} catch (e) {
}
}, 100);
FB.api({
method: 'fql.query',
query: 'SELECT src_big,pid,caption,object_id FROM photo WHERE aid= "' + albumID + '" ORDER BY created DESC LIMIT 1'
},
function(response) {
console.log(response);
}
);
}
if (iframeId.addEventListener)
iframeId.addEventListener('load', eventHandler, true);
if (iframeId.attachEvent)
iframeId.attachEvent('onload', eventHandler);
// Set properties of form...
form.setAttribute('target', 'upload_iframe');
form.setAttribute('action', action_url);
form.setAttribute('method', 'post');
form.setAttribute('enctype', 'multipart/form-data');
form.setAttribute('encoding', 'multipart/form-data');
// Submit the form...
form.submit();
}
在运行时,您可能会从先前的调用中知道 albumObjectID,并从登录或会话 onauthchange 返回的会话对象中获得访问令牌。
var url = 'https://graph.facebook.com/' + albumObjectID + '/photos?access_token=' + accessToken;
fileUpload($('#upload-photo-form')[0], url, $('#upload-photo-div')[0]);`
显然这不是生产代码,你可以做一些事情来提高它的可靠性(比如检查提交图像的宽度、高度、标题和标签到最新图像)。在尝试上传之前和之后检查最新图像等。
PS:注意albumObjectID 和albumID,它们是不同的,但是两者都可以使用一些简单的FQL 查询来获得。(例如SELECT aid, object_id, can_upload, name FROM album WHERE owner = me() AND name = "My Album Name"
:)
希望这可以帮助。
相机学校辍学