Background: i use progressive scope enhancement to sign in the user with google, then get access to their gmail, then auth into their github accounts
how do i get something like:
google: {
provider: google,
email: [email protected],
image: https://xxx,
scope: profile
},
gmail: {
provider: gmail,
email: [email protected],
image: https://xxx,
scope: gmail.send
},
github: {
provider: github,
userid: fotoflo,
image: https://xxx,
}
]
}
```?