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" } ]

已提问 2 个月前231 查看次数
1 回答
1
已接受的回答

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
专家
已回答 2 个月前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则