I've searched trough the API documentation but I cant find a property to set the User Profile avatar/thumbnail when using People Analytics. Is it possible?
I am using Facebook Graph API to get it and i wanted to save it to the user profile in mixpanel. But I am missing the "avatar".
FB.api("/me/picture",function (response) {
console.log('Avatar URL: ' + response.data.url);
mixpanel.people.set({
"avatar": response.data.url
});
});
Cheers
EDIT: Well, I've contacted Mixpanel support and they answered me the following:
"Currently, Mixpanel automatically pulls in users' profile pictures if the user's email is associated with a Gravatar global avatar account. There isn't a way to manually control this for the time being, so any users who don't have Gravatar profiles will unfortunately not have profile pictures."
That means, it is not possible to do it as we speak. I contacted them a little further and apparently, they already have that feature in mind for the near future.