0
我正在整合Facebook在我的phonegap應用程序,Facebook的朋友個人資料圖片,姓名和生日日期顯示,現在能夠顯示姓名和生日日期,但不是個人資料圖片。我正在使用藍色矩形框問號圖像來代替配置文件圖片,而不是配置文件圖片。 請幫幫我。發佈在facebook上的朋友個人資料圖片
function me() {
FB.api('/me/friends', {fields: 'id, name, picture,birthday' }, function(response) {
if (response.error) {
alert(JSON.stringify(response.error));
} else {
var data = document.getElementById('data');
fdata=response.data;
console.log("fdata: "+fdata);
response.data.forEach(function(item) {
var d = document.createElement('div');
d.innerHTML = "<img src="+item.picture+item.birthday+"/>"+item.name+"<br>"+item.birthday;
data.appendChild(d);
}
}
''什麼'item.birthday'在IMG SRC標籤嗎? – Jurik