You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have a MDS EDC Connector running on our Server gaiax.example.de
Our UI-Dashboard is available at https://gaiax.example.de/dashboard and when it requests data from the Management-API (https://gaiax.example.de/api/management/) we always get the following Error-Message: [{"message":"Request could not be authenticated","type":"AuthenticationFailed","path":null,"invalidValue":null}]
We found our problem, it was the API-Key.
The problem is that our API-Key started with & and we therefore put quotation marks around the Key, so it looked like this: EDC_API_AUTH_KEY: "&123456"
Without the quoatation marks we got an error from Docker. With a new API-Key only consisting of numbers and letters without any quotation marks everything works perfectly. If we add quotation marks to the API-Key in the docker-compose.yaml it doesn't work again.
A hint in the default docker-compose.yaml that quotation marks shouldn't be used and therefore the API-Key can't start with a special character may be useful that other users don't encounter the same problem :)
We have a MDS EDC Connector running on our Server gaiax.example.de
Our UI-Dashboard is available at https://gaiax.example.de/dashboard and when it requests data from the Management-API (https://gaiax.example.de/api/management/) we always get the following Error-Message:
[{"message":"Request could not be authenticated","type":"AuthenticationFailed","path":null,"invalidValue":null}]
This happens for every request to the Management-API, for example https://gaiax.example.de/api/management/edc-ui-config or https://gaiax.example.de/api/management/last-commit-info
We set up our Connector using this template: https://github.com/Mobility-Data-Space/mobility-data-space/blob/main/templates/connector_with_traefik.yaml . Because Traefik couldn't get a certificate to authenticate, we created one by ourselves and added it to traefik:
When we try to access the Management-API using curl with the API-KEY we get the same Error-Message.
The text was updated successfully, but these errors were encountered: