Created
September 8, 2021 09:47
-
-
Save velotiotech/db4230b457b79f67c7767eeeb5f1c806 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let authsession = await Auth.currentSession(); | |
let jwtToken = authsession.getIdToken().jwtToken; | |
let photoList = await axios.get(url,{ | |
headers : { | |
Authorization: jwtToken | |
}, | |
responseType : "json" | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment