graphql-python / graphql-python/gql-next

load_introspection_from_server does not use custom headers

未关闭
#25 3 条评论 1 个 reaction 已指派 0 人 在 GitHub 查看

还没有人认领这个 Issue。

主要语言
Python
星标
78
派生
6
PR 合并指标
30 天内没有已合并 PR

描述

Hello I'm trying to test gql but running ` gql run` returned
```

[...]

File "/home/rdebroiz/.virtualenvs/test_gql/lib/python3.7/site-packages/gql/utils_schema.py", line 22, in load_schema
introspection = load_introspection_from_file(uri) if os.path.isfile(uri) else load_introspection_from_server(uri)
File "/home/rdebroiz/.virtualenvs/test_gql/lib/python3.7/site-packages/gql/utils_schema.py", line 13, in load_introspection_from_server
raise Exception(f'Query failed to run by returning code of {request.status_code}. {query}')
Exception: Query failed to run by returning code of 401.

[...]
```

I suspect the cause is that the custom headers are not used to load the schema from the configured endpoint.

```python
def load_introspection_from_server(url):
query = get_introspection_query()
request = requests.post(url, json={'query': query})
if request.status_code == 200:
return request.json()['data']

raise Exception(f'Query failed to run by returning code of {request.status_code}. {query}')
```

Here is what my `.gql.json` look likes:
```json
{
"schema": "http://hasura:10004/v1alpha1/graphql",
"endpoint": "http://hasura:10004/v1alpha1/graphql",
"documents": "./**/*.graphql",
"custom_header": {
"x-hasura-admin-secret": "adminpw",
"x-hasura-access-key": "userpw"
}
}
```

贡献指南

这个仓库没有索引到贡献指南

从这里开始

  1. 先读完整个 Issue,再读项目的贡献指南。
  2. 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
  3. Fork 仓库,在一个分支上完成修改。
  4. 提交 Pull Request,并在描述里引用这个 Issue 编号。

调研方向

从 utils_schema.py 中的 load_introspection_from_server 开始,跟踪 schema 加载如何接收已配置的 custom_header 值。检查经过身份验证的 introspection 请求路径,以及任何相关测试或命令配置。当加载 schema 时使用了已配置的标头,并且已报告的 401 情况得到覆盖时,即表示完成。

由索引模型根据 Issue 内容生成。

评估

技术栈
graphql, python
领域
api, authentication
Issue 类型
缺陷
难度
3/5
预计耗时
1-2 天
活跃度
停滞
描述清晰度
描述清楚
新手友好度
35/100

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。