2014-09-25 70 views
-1

我想從我的網站上發佈圖片到用戶牆上。 用戶已連接,而我用這個方法:Facebook API在發佈圖片時顯示popin消息

FB.api('/me/photos', 'post', { 
     message: "my message", 
     url:sourceimage 
    }, function(response){ 
     if (!response || response.error) { 
      console.log(response); 
     } else { 
      alert("image is posted"); 
     } 

    }); 

現在我想知道,這樣用戶可以將其發送至Facebook之前,改變他的消息,我如何能夠促使Facebook的人口信息網?

謝謝

+2

你不能。你將不得不顯示彈出你的自我,並要求消息 – WizKid 2014-09-25 17:22:58

回答

-1

正如WizKid所說,FB.api不可能。

+0

想知道爲什麼我得到-1。 – arlg 2014-10-02 23:02:05