Need help with fetching refresh_token from Google social login

@kimcodes

I am happy to report that I got this working by reviewing your suggested link here

webAuth.authorize({
connection: 'google-oauth2',
connection_scope: 'https://www.googleapis.com/auth/youtube.readonly,https://www.googleapis.com/auth/yt-analytics.readonly',
scope: 'openid profile',
accessType: 'offline',
approvalPrompt: 'force'

})

I had tried placing ‘accessType’ in this way before, but I had not included the scope or connection_scope. With all of these elements in place (approvalPrompt optional), it did work for me.

Thank you very much for your help!