Hacktoberfest 2026: những issue maintainer đã đánh dấu cho tháng Mười, đang mở và phù hợp người mới. Xem issue Hacktoberfest

JSON content type not being set when a single header is present

Đang mở
#1,834 2 bình luận 0 reaction 0 người được giao Xem trên GitHub

Chưa có ai nhận issue này.

Đánh giá

Độ khó
3/5
Thời gian dự kiến
1-2 ngày
Mức phù hợp với người mới
55/100
Loại issue
Lỗi
Độ rõ ràng
Khá rõ ràng
Mức độ hoạt động
Ít trao đổi
Công nghệ
python
Lĩnh vực
cli

Hướng nghiên cứu

Bắt đầu bằng cách tái hiện hai lệnh POST trong issue với HTTPie 3.2.4 và so sánh output verbose và debug của chúng. Theo dõi cách các header của request được tạo khi cung cấp một hoặc hai header tùy chỉnh. Hoàn thành khi một header tùy chỉnh duy nhất vẫn khiến Content-Type: application/json được gửi đi và được báo cáo trong cả output của request lẫn response từ pie.dev.

Do mô hình lập chỉ mục viết ra từ nội dung của issue.

Mô tả

Checklist

  • I've searched for similar issues.
  • I'm using the latest version of HTTPie.

Minimal reproduction code and steps

  1. $ https post pie.dev/post -v 'header1: xyz' x=1
  2. $ https post pie.dev/post -v 'header1: xyz' 'header2: abc' x=1

Current result

output from step 1:

POST /post HTTP/1.1
Accept-Encoding: gzip, deflate
Connection: keep-alive
Host: pie.dev
header1: xyz

{"x": "1"}

HTTP/1.1 200 OK
Access-Control-Allow-Credentials: true
Access-Control-Allow-Origin: *
CF-RAY: 95566dc8c8d1f7c9-LAX
Cf-Cache-Status: DYNAMIC
Connection: keep-alive
Content-Encoding: gzip
Content-Type: application/json
Date: Wed, 25 Jun 2025 18:11:41 GMT
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=T5F5MLxiQSAvDrINeG1ku5IkxuGFXPCXZCppIMBEnShUajvjeC3%2BvZcwVBmdlCmAv4Nb9LuUyx2EnQd45Dnmkx%2FAojwaiPk%3D"}]}
Server: cloudflare
Transfer-Encoding: chunked
alt-svc: h3=":443"; ma=86400

{
    "args": {},
    "data": "{\"x\": \"1\"}",
    "files": {},
    "form": {},
    "headers": {
        "Accept-Encoding": "gzip, br",
        "Cdn-Loop": "cloudflare; loops=1",
        "Cf-Connecting-Ip": "<REDACTED>",
        "Cf-Ipcountry": "US",
        "Cf-Ray": "95566dc8c8d1f7c9-FRA",
        "Cf-Visitor": "{\"scheme\":\"https\"}",
        "Content-Length": "10",
        "Header1": "xyz",
        "Host": "pie.dev",
        "User-Agent": "python-urllib3/2.5.0"
    },
    "json": {
        "x": "1"
    },
    "origin": "<REDACTED>",
    "url": "https://pie.dev/post"
}

(Neither HTTPie's verbose output or pie.dev's response reports Content-Type: application/json)

Expected result

output from step 2:

POST /post HTTP/1.1
Accept-Encoding: gzip, deflate
Connection: keep-alive
Content-Type: application/json
header1: xyz
header2: abc
Host: pie.dev

{"x": "1"}

HTTP/1.1 200 OK
Date: Wed, 25 Jun 2025 18:13:03 GMT
Content-Type: application/json
Transfer-Encoding: chunked
Connection: keep-alive
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Access-Control-Allow-Origin: *
Access-Control-Allow-Credentials: true
Cf-Cache-Status: DYNAMIC
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=rtMPq5%2BI8UInMXCz1Fm7mh3yvd5yUt%2BZrSaQMEqe68bvTDT0Aka8A3gc8wSEQP1ZNkbhXMV6QB%2FcyVjAgpW04b439a9nRYM%3D"}]}
Content-Encoding: gzip
CF-RAY: 95566fc8bb3c279a-LAX
alt-svc: h3=":443"; ma=86400

{
  "args": {}, 
  "data": "{\"x\": \"1\"}", 
  "files": {}, 
  "form": {}, 
  "headers": {
    "Accept-Encoding": "gzip, br", 
    "Cdn-Loop": "cloudflare; loops=1", 
    "Cf-Connecting-Ip": "<REDACTED>", 
    "Cf-Ipcountry": "US", 
    "Cf-Ray": "95566fc8bb3c279a-FRA", 
    "Cf-Visitor": "{\"scheme\":\"https\"}", 
    "Content-Length": "10", 
    "Content-Type": "application/json", 
    "Header1": "xyz", 
    "Header2": "abc", 
    "Host": "pie.dev", 
    "User-Agent": "python-urllib3/2.5.0"
  }, 
  "json": {
    "x": "1"
  }, 
  "origin": "<REDACTED>", 
  "url": "https://pie.dev/post"
}

(both HTTPie's verbose output and pie.dev's response report Content-Type: application/json)


Debug output

Please re-run the command with --debug, then copy the entire command & output and paste both below:

$ https post pie.dev/post --debug -v 'header1: xyz' x=1

HTTPie 3.2.4
Requests 2.32.4
Pygments 2.19.1
Python 3.13.5 (main, Jun 11 2025, 15:36:57) [Clang 17.0.0 (clang-1700.0.13.3)]
/opt/homebrew/Cellar/httpie/3.2.4_3/libexec/bin/python
Darwin 24.5.0

<Environment {'apply_warnings_filter': <function Environment.apply_warnings_filter at 0x101b88cc0>,
 'args': Namespace(),
 'as_silent': <function Environment.as_silent at 0x101b88b80>,
 'colors': 256,
 'config': {'default_options': []},
 'config_dir': PosixPath('/Users/andrewmuro/.config/httpie'),
 'devnull': <property object at 0x101b66a70>,
 'is_windows': False,
 'log_error': <function Environment.log_error at 0x101b88c20>,
 'program_name': 'https',
 'quiet': 0,
 'rich_console': <functools.cached_property object at 0x10103e690>,
 'rich_error_console': <functools.cached_property object at 0x101b5cc00>,
 'show_displays': True,
 'stderr': <_io.TextIOWrapper name='<stderr>' mode='w' encoding='utf-8'>,
 'stderr_isatty': True,
 'stdin': <_io.TextIOWrapper name='<stdin>' mode='r' encoding='utf-8'>,
 'stdin_encoding': 'utf-8',
 'stdin_isatty': True,
 'stdout': <_io.TextIOWrapper name='<stdout>' mode='w' encoding='utf-8'>,
 'stdout_encoding': 'utf-8',
 'stdout_isatty': True}>

<PluginManager {'adapters': [],
 'auth': [<class 'httpie.plugins.builtin.BasicAuthPlugin'>,
          <class 'httpie.plugins.builtin.DigestAuthPlugin'>,
          <class 'httpie.plugins.builtin.BearerAuthPlugin'>],
 'converters': [],
 'formatters': [<class 'httpie.output.formatters.headers.HeadersFormatter'>,
                <class 'httpie.output.formatters.json.JSONFormatter'>,
                <class 'httpie.output.formatters.xml.XMLFormatter'>,
                <class 'httpie.output.formatters.colors.ColorFormatter'>]}>

>>> requests.request(**{'auth': None,
 'data': b'{"x": "1"}',
 'headers': <HTTPHeadersDict('User-Agent': b'HTTPie/3.2.4', 'Accept': b'application/json, */*;q=0.5', 'Content-Type': b'application/json', 'header1': b'xyz')>,
 'method': 'post',
 'params': <generator object MultiValueOrderedDict.items at 0x101facf40>,
 'url': 'https://pie.dev/post'})

POST /post HTTP/1.1
Accept-Encoding: gzip, deflate
Connection: keep-alive
Host: pie.dev
header1: xyz

{"x": "1"}

HTTP/1.1 200 OK
Access-Control-Allow-Credentials: true
Access-Control-Allow-Origin: *
CF-RAY: 95567851aa815263-LAX
Cf-Cache-Status: DYNAMIC
Connection: keep-alive
Content-Encoding: gzip
Content-Type: application/json
Date: Wed, 25 Jun 2025 18:18:53 GMT
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=esCpq2VXduYA9W9gSJ1M5zi9BdGYBrkJ8fq8Jc8tIJf2QEO4REGWcuonYlkM5cAHzETL%2BPuzAcAuyUgokl6O74%2F7D53b"}]}
Server: cloudflare
Transfer-Encoding: chunked
alt-svc: h3=":443"; ma=86400

{
    "args": {},
    "data": "{\"x\": \"1\"}",
    "files": {},
    "form": {},
    "headers": {
        "Accept-Encoding": "gzip, br",
        "Cdn-Loop": "cloudflare; loops=1",
        "Cf-Connecting-Ip": "<REDACTED>",
        "Cf-Ipcountry": "US",
        "Cf-Ray": "95567851aa815263-FRA",
        "Cf-Visitor": "{\"scheme\":\"https\"}",
        "Content-Length": "10",
        "Header1": "xyz",
        "Host": "pie.dev",
        "User-Agent": "python-urllib3/2.5.0"
    },
    "json": {
        "x": "1"
    },
    "origin": "<REDACTED>",
    "url": "https://pie.dev/post"
}

Additional information, screenshots, or code examples

The underlying issue here is that when sending a request to a Serverless app (in my case, using only an Authorization header), API gateway will automatically encode the request body as base64 because the Content-Type header isn't set, which causes JSON parsing of the body to fail.

Ngôn ngữ chính
Python
Star
38.6k
Fork
4k
Chỉ số merge pull request
Không có pull request nào được merge trong 30 ngày

Hướng dẫn đóng góp

Mở hướng dẫn đóng góp

Bắt đầu từ đâu

  1. Đọc hết issue, rồi đọc hướng dẫn đóng góp của dự án.
  2. Bình luận trên issue rằng bạn sẽ nhận — tránh hai người làm cùng một việc.
  3. Fork repository và làm thay đổi trên một nhánh.
  4. Mở pull request có tham chiếu số hiệu của issue.

Issue khác của httpie/cli

Tất cả issue của httpie/cli

Issue tương tự

Thêm issue về Python

Nhận issue mới trong hộp thư của bạn

Bản tóm tắt ngắn những issue GitHub phù hợp với người mới.