如何使用Facebook JavaScript API提取Facebook个人资料图片timeStemp?
以下代码我用来获取facebook个人资料图片。
$scope.getInfo = function() {
FB.api('/me', 'GET', {fields: 'first_name,last_name,name,id,picture.width(100).height(100)'}, function(response) {
document.getElementById('status').innerHTML = "<img src='" + response.picture.data.url + "'>";
console.log(response)
});
}
还是有什么方法可以获得个人资料图片的时间表?请帮帮我:))