Use access token rather than id token when calling API

This commit is contained in:
2019-01-22 13:30:41 +01:00
parent 9c0726b7db
commit 0470844f4a
4 changed files with 8 additions and 2 deletions
+1
View File
@@ -43,4 +43,5 @@ export const clearStateAndNonce = () => {
export const getUserInfo = () => JSON.parse(localStorage.getItem(STORAGE_USER));
export const getIdToken = () => localStorage.getItem(STORAGE_ID);
export const getAccessToken = () => localStorage.getItem(STORAGE_ACCESS);
export const getExpiresAt = () => JSON.parse(localStorage.getItem(STORAGE_EXPIRES));