-
Notifications
You must be signed in to change notification settings - Fork 1
Description
Where do you configure Authorization for the Strapi plugin?
The only field during setup is Strapi URL, and the Strapi docs indicate that the API key should be included as a Header:
When performing a request to Strapi’s REST API, the API token should be added to the request’s Authorization header with the following syntax: bearer your-api-token .
Does the Strapi<–>WeWeb plugin use a different (non-REST) endpoint i.e. graphql or something I’m missing?
Because when you create a collection, there is no later opportunity to provide an API Key. See screenshot of the collection wizard -
When you create a new API key in Strapi, the final confirmation dialogue looks as follows:
Step 3: Completed ✅
See content in action by making an HTTP request:To this URL: https://<YOUR_DOMAIN>/api/<YOUR_CT> (YOUR_CT = your content-type)
With the header: Authorization: bearer <YOUR_API_TOKEN>
For more ways to interact with content, see the documentation.

