2014年10月26日 星期日

FB 使用 API 更新 封面

var fbPostphoto = function () { var imgURL = "http://farm4.staticflickr.com/3332/3451193407_b7f047f4b4_o.jpg"; //要上傳照片的連結 var fbMessage = $("#fbPost_text2").val(); //想要說明的連結 FB.api("me/photos", "post", { //FB API提供的語法 message: fbMessage, url: imgURL }, function (response) { if (!response || response.error) { $("#postCallback").html("發布失敗!").addClass("alert-warn"); } else { $("#postCallback").html("發布成功!").addClass("alert-success"); $("#TextBox1").val(response.id); //測試用 SHOW出 照片成功後 ID location.href = "http://www.facebook.com/profile.php?preview_cover=" + response.id; //連結到更新封面的網址 $("#fbPostField").hide(); } $("#postCallback").show(); setTimeout(function () { $("#postCallback").fadeOut(800, function () { $(this).removeClass("alert-warn alert-success"); }); }, 1900); }); return false; }

沒有留言:

張貼留言