skip to Main Content

Javascript – How to convert an image url to File object from Google oAuth response?

In my React project I have a google oAuth API which I'm retrieving the google image url from the response: const userInfoResponse = await axios.get('https://www.googleapis.com/oauth2/v3/userinfo', { headers: { Authorization: `Bearer ${googleResponse.access_token}` } }); const google_image = userInfoResponse.data.picture; console.log(google_image); //https://lh3.googleusercontent.com/a/ACg8ocKjThtaGf5USLuL2LBMBuYxfDG0gDdM-RLA_I__UvNI3p_2Hlk=s96-c Now…

VIEW QUESTION
Back To Top
Search