Unauthorized running AppSync Query

0

I have a GraphQL Schema set on an AWS AppSync API. In the Schema view I can see my schema and query, but when I run the query from the query view I am getting the following where uploadFile is the query I am attempting to run.

{ "data": { "uploadFile": null }, "errors": [ { "path": [ "uploadFile" ], "data": null, "errorType": "Unauthorized", "errorInfo": null, "locations": [ { "line": 2, "column": 3, "sourceName": null } ], "message": "Not Authorized to access uploadFile on type Query" } ]

demandé il y a 2 mois231 vues
1 réponse
1
Réponse acceptée

Issue:

This issue indicate that the client is not authorized to access the uploadFile query on the AWS AppSync API, likely due to a mismatch between the configured authentication mode and the credentials provided or insufficient permissions set for the accessing entity.

Possible solution:

To resolve the issue, verify and align the authentication mode used by your client with the one configured for your AWS AppSync API, and ensure the entity making the request has the appropriate permissions to access the uploadFile query.

For detailed instructions on how to set up access for the uploadFile query in your AWS AppSync API using AWS IAM, check out the friendly guide in the AWS AppSync Developer Guide.

profile picture
EXPERT
répondu il y a 2 mois

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions