E_UNAUTHORIZED_ACCESS Error avec AdonisJs et Google oAuth
Nathalie099
Messages postés11Date d'inscriptionmardi 30 avril 2019StatutMembreDernière intervention28 novembre 2024
-
Modifié le 28 nov. 2024 à 18:09
J'ai créé un projet avec adonisJs. J'utilise google oAuth et les sessions pour gérer l'authentification. Lorsque je me connecte l'utilisateur est bien authentifié et inséré en base mais lorsque je lance un appel postman protégé par mon auth_middleware, la session est vide et j'obtiens cette erreur 401 E_UNAUTHORIZED_ACCESS. const isAuthenticated = await ctx.auth.check() est vide. Pourtant, je passe bien l'accessToken via postman.
import env from '#start/env'
import { defineConfig, stores } from '@adonisjs/session'
const sessionConfig = defineConfig({
enabled: true,
cookieName: 'adonis-session',
/**
* When set to true, the session id cookie will be deleted
* once the user closes the browser.
*/
clearWithBrowser: false,
/**
* Define how long to keep the session data alive without
* any activity.
*/
age: '2h',
/**
* Configuration for session cookie and the
* cookie store
*/
cookie: {
path: '/',
httpOnly: true,
secure: false,
sameSite: false,
},
/**
* The store to use. Make sure to validate the environment
* variable in order to infer the store name without any
* errors.
*/
store: env.get('SESSION_DRIVER'),
/**
* List of configured stores. Refer documentation to see
* list of available stores and their config.
*/
stores: {
cookie: stores.cookie(),
},
})
export default sessionConfig
A voir également:
E_UNAUTHORIZED_ACCESS Error avec AdonisJs et Google oAuth