Ben
Ben
I put this code css to see it ``` dialog[open] { padding: 0 40px !important; } ```
I have the same error and i follow Generate API Keys on https://supabase.com/docs/guides/hosting/docker and it was ok.
Hello @benjamincanac Instead of doing that : ``` const runtimeConfig = useRuntimeConfig() const client = useStrapiClient() const articles = await client('/articles?populate=*', { method: 'GET', headers: { 'Authorization': 'Bearer ' +...
Ok i'm new on Strapi (v4) and i just see how to put permissions to Public like you say. But is not the default configuration, one of the first steps...
Oh yes il feel stupid :/ i dont realize was so easy to get the token. So i will protect my API access with IP rules. Thks
Hello I see a lot issues on the "custom headers" subject, but no one help me to do what i want. Is there a way to just add custom headers...
I made a temporary solution by modifying the `getSession` function of the `useAuth.js` file ``` async function getSession(getSessionOptions) { const nuxt = useNuxtApp(); const config = useTypedBackendConfig(useRuntimeConfig(), "local"); // EDIT...
And i do the same for refresh : ``` async function refresh(getSessionOptions) { const nuxt = useNuxtApp(); const config = useTypedBackendConfig(useRuntimeConfig(), "local"); if (!config.refresh.isEnabled) { return getSession(getSessionOptions); } // EDIT...
Did you find how to do that ? I have setup this auth page on my Nuxt 3 Project where i try to set my headers dynamically with my token...