I am using the standard Javascript method of signing in with a user:
<script type="text/javascript" src="linkedInUrl">
api_key: s4mp13
authorize: true
onLoad: onLinkedInLoad
</script>
and I am unable to access a user's email field with the following call:
function onLinkedInAuth() {
IN.API.Profile("me") // get user
.fields(["email-address"])
.result(function (result) {
profile = result.values[0];
$.post('/User/Authorize/', { 'profile': profile }, function (data) {
window.location = data;
});
});
}
I take it this is because I have not specified the member permission 'r_emailaddress'? But I have looked around and can only see examples of this with the REST API, how do I define the member permissions in JavaScript?
Or is there another way to achieve this?