3

私は得ていますGraphQLError: Request failed with status code 401

次の自動構成手順に従いました。

https://aws.github.io/aws-amplify/media/api_guide#automated-configuration-with-cli

探してみたのですが、IAMのリソースが不足しています。すべてが自動的にセットアップされ、IAM アクセス キーとシークレットを入力した後、Amplify CLI で完了する必要があるようです。

さらにセットアップが必要ですか? これが私のコードです:

import Amplify, { API, graphqlOperation, Hub } from "aws-amplify";
import aws_config from "../../aws-exports";

Amplify.configure(aws_config);

const ListKeywords = `query ListKeywords {
  listKeyword {
    keyword {
      id
      name
    }
  }
}`;

const loop = async () => {
  const allKeywords = await API.graphql(graphqlOperation(ListKeywords));
}

また、GraphQL リゾルバーがまだ ListKeywords 用にセットアップされていないためでしょうか?

4

3 に答える 3