facebook get profile picture after user logins into website
FB.api('/me', {fields: 'id,name,email,picture'}, function (response) {
var picture_url = picture.data.url;
});
facebook get profile picture after user logins into website
FB.api('/me', {fields: 'id,name,email,picture'}, function (response) {
var picture_url = picture.data.url;
});
facebook get profile picture after user logins into website
FB.api("/me", {fields: "id,name,picture"}, function(response)
{
FB.api(
{
method: 'fql.query',
query: 'SELECT pid, src_big, src_big_height, src_big_width FROM photo WHERE aid IN ( SELECT aid FROM album WHERE owner="' + response.id + '" AND name = "Profile Pictures")'
},
function(data1) {
alert( data1[0].src_big );
}
);
});
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us