2016-03-29 4 views

答えて

0

facebookのグラフAPIを使用して、oauth.ioでfacebookメディアアカウントを初期化するのに便利です。ここ

https://developers.facebook.com/docs/graph-api/reference/user/photos/

FB.api(
"/me/photos", 
"POST", 
{ 
    "url": "{image-url}" 
}, 
function (response) { 
    if (response && !response.error) { 
    /* handle the result */ 
    } 
} 
); 

簡単なコードブロックです。しかし、1MB程度の画像サイズが必要です。

関連する問題