我是graphql的新手。
访问了该站点https://graphql.org/swapi-graphql/并发送了一个简单的查询,如下所示
query {
allPeople {
people{
name
birthYear
}
}
}
并得到了类似的回应
{
"data": {
"allPeople": {
"people": [
{
"name": "Luke Skywalker",
"birthYear": "19BBY"
},
{
"name": "C-3PO",
"birthYear": "112BBY"
}......so on
]
}
}
}
现在我已经下载了像insomnia和graphiql这样的 graphql 桌面客户端应用程序
我正在尝试使用 insomnia 和 graphiql 桌面应用程序运行上述相同的查询,但到目前为止未能成功。我失眠了
403 ERROR
The request could not be satisfied.
This distribution is not configured to allow the HTTP request method that was used for this request. The distribution supports only cachable requests.
Generated by cloudfront (CloudFront)
在使用 graphiql 桌面应用程序时,加载程序不间断运行时似乎存在一些类似的错误。
那么我错过了什么,为什么桌面客户端无法连接到 start war api(https://graphql.org/swapi-graphql),而 google chrome 浏览器正在工作。谷歌浏览器也是客户端吧?
当涉及到桌面应用程序客户端时,我是否遗漏了什么?