I think you would like to customize your user profile picture yourself. Since services do not have a standard way of storing a profile image. And meteor oauth does not have a required code for each class of service.
You can install it when creating an account. This will require writing code for each service.
Accounts.onCreateUser(function (options, user) { if (user.services.google !== undefined) { user.profile.profile_picture = user.services.google.picture; } if (user.services.twitter !== undefined) { user.twitter.profile_picture = user.services.twitter.profile_url;
or publish.
source share