javascript - Vkontakte: get big profile image with passport.js -
in passport.js, retrieve vkontakte profile picture this:
newuser.vkontakte.image = profile.photos[0].value;
this gives me smallest picture size. how can original size?
i did try things like
newuser.vkontakte.image = profile.photo_200;
or
newuser.vkontakte.image = params.photo_200;
but response empty. in case, changed scope this:
'friends, photos, email, photo_200'
when profile photo url
i substring "_normal". it's original image size
Comments
Post a Comment