Hi i’m developing an application that once the user accepted to share his Viadeo informations, has to get the email. So i’m using the Viadeo API and coding in Javascript
My code is the following
VD.api('/me', {user_detail : 'partial'}, function(r) {
nom.value = r.last_name;
prenom.value = r.first_name;
presentation.value = r.introduction;
photo.value = r.picture_large;
});
In fact the r is a variable that is supposed to give me all the users informations (it’s a JSON object.
I can’t find email (even when I try with other options like “user_detail = full”
So my question is, Is it possible to retrieve the email of a user through Viadeo API?
Thks a lot for your answers
In fact I checked and we can’t get the user email (for security against spam)