Strapi is an open-source Node.js headless CMS built on top of Koa. It's frontend-agnostic and claims to not be an MVC framework. It auto-generate RESTful endpoints and has support for GraphQL and WebSockets.
Questions tagged [strapi]
2734 questions
0
votes
0 answers
attributes not working from strapi URL data fetch
i been trying to display the data i got from strapi url ,
i get the data fine with axios but when i dislpay it , it cant read the attributes from the url data
ill post code images for better understanding
i expected to get the data…

YaHia El-Tohamey
- 1
- 1
0
votes
0 answers
Failed to validate the WhatsApp cloud api webhook url callback in Strapi
I deployed a Strapi project and run it through pm2 and nginx. I have a webhook api in https://zeusoftware.online/api/webhook. Here is my code for verify the webhook, I didn't implement the token, challenge and mode logic…

Bagusflyer
- 12,675
- 21
- 96
- 179
0
votes
1 answer
How to authenticate request made from custom Strapi plugin?
I have a custom Strapi plugin with the following route:
module.exports = [
{
method: "GET",
path: "/export/:formToExport/:deleteAfterExport",
handler: "myController.index",
config: {
policies: [],
},
},
];
And I have…

Chris Lau
- 77
- 1
- 6
0
votes
0 answers
Mapping components dynamically using webpack in Next.js
I'm building a NextJS app which fetches data from a strapi CMS at build time. Strapi allows to organize content using components and I would like to map strapi components to the ones of my Next project in order to build each web page according to…

canta2899
- 394
- 1
- 7
0
votes
0 answers
generateStaticParams causing my Next Js app deployment to fail
I am using the vercel CLI command 'vercel' to deploy my Next Js app to vercel. Currently the deployment fails when I try to return paths from generateStaticParams in a dynamic page with the url /listings/[category]/[...listing]/page.js. It however…

Kofi Talent
- 25
- 4
0
votes
0 answers
How to fix Auth0 provider configuration to resolve 'Grant: missing session or misconfigured provider' error in Strapi?
I cannot receive a JWT token and user from response, when Im trying to send
${process.env.NEXT_PUBLIC_API}/api/connect/auth0/callback? +
tokenQuery.
Instead, Ive got
Response.url =…
0
votes
0 answers
Custom label for strapi collection when creating an entry
So I'm pretty new to Strapi, and I have the following relationship :
As it can be seen a country has many states, and each state has a state_info, however, name in state is not unique, so when adding the relationship in Strapi, I can see several…

Nobby_Nobody
- 93
- 9
0
votes
1 answer
How do you login as a super admin in Strapi?
I cannot find how to login as super admin in Strapi V4 using endpoints.
I've tested
.../api/auth/local with identifier (username) and password
.../api/auth/local with identifier (email) and password
(400 validation error - I guess this endpoint is…

gordie
- 1,637
- 3
- 21
- 41
0
votes
0 answers
I building a Nextjs app, that consume a graphql api from strapi
next version: 13.3.1
The point is: using getServerSideProps is working but using react useEffect don't.
I plan to use useEffect to fast update when I create a new post on strapi.
following the Page script:
import { useEffect, useState } from…

Flavio Oliveira
- 381
- 4
- 12
0
votes
1 answer
How to configure nginx config for strapi and nuxt?
I need to configure the nginx configuration so that the site nuxt is accessible at the usual address, the admin panel strapi at the address /api. The site itself works and receives data, but does not receive images from the uploads folder from…

Frallen
- 405
- 5
- 14
0
votes
1 answer
strapi Image does not display with next Image
hi i'm using strapi as a backend, trying to display my image in my next application.
i get the url from my apicall but when i put it inside my SRC in my Image component it render a broken image
here is the response named user like this :
{
…

Matt Freelance Web
- 65
- 1
- 4
0
votes
0 answers
Next.js getStaticProps runs on every request in production
getStaticProps runs on every request in prod. (locally as well when start with next build && next start). NODE_END is set to production. fallback is set to false.
no re-validation.
next.js 12.3.4v
not sure what may cause this...

Mykyta
- 230
- 2
- 5
- 16
0
votes
1 answer
Deployment of Strapi to a DigitalOcean droplet with Nginx server
I'm having an issue being able to access a Strapi app deployed to a DigitalOcean droplet running Ubuntu 18.04. The docs have been followed but then they just sort of end.
The app is definitely running using pm2 on the server. The Nginx server block…

isoaxe
- 177
- 2
- 11
0
votes
1 answer
Can Strapi handle 1.5 million products and 30k categories with a depth of 6?
Can Strapi handle 1.5 million products and 30,000 categories with a category depth of 6?
Hello guys,
I am considering using Strapi for my e-commerce project, and I would like to know if it can handle my specific use case. I have around 1.5 million…

Francois
- 1
- 1
0
votes
0 answers
How to configure Elasticsearch in Strapi?
I'm trying to integrate Elasticsearch into my Strapi project for efficient search functionality. I have Elasticsearch installed and running on my system, but I'm unsure about the necessary steps to configure it properly within Strapi. Could someone…

Komeil Mehranfar
- 45
- 1
- 2
- 13