0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

PostmanからバイナリデータをPOSTする

Last updated at Posted at 2022-04-24

最近APIのテストをする時によくPostmanを使っています。
FastAPIにバイナリデータをPOSTしようとして詰まったのでメモっておきます。

TL;DR

Postmanからバイナリを送信するときはbinaryではなくform-dataを使いましょう。

困ったこと

http://localhost:8000/pool/でPOSTを受信するプログラムを作っていました。

main.py
...
@app.post("/pool/")
async def receiveBinary(file: UploadFile = File(...), authorization: str = Header(None)):
    BearerCheck(authorization)
    return {"filename": file.filename}

PostmanでPOSTのチェックをしたところ
422 Unprocessable Entity "failed required" "value_error.missing"と怒られてしまいました。
image1.jpg

解決

色々と調べてここを見ていたらform-dataで送信してるではありませんか。
なんとなくbinaryという項目があったので使っていましたが、考えてみれば実装時はform-dataで送りますもんね。

from-dataで改めて送信したところしっかりレスポンス200を受け取れれました。
なんとなくFastAPIが悪いと思って遠回りしてしまいました。
image2.jpg

たぶんPostmanでbinaryを選択して送信した際にbodyヘッダを付けて送信していたからFastAPI側で受け取れなかったのではないか…と解釈しています。

https://stackoverflow.com/questions/71488533/fastapi-postman-error-422-processable-entity
https://stackoverflow.com/questions/62798421/how-to-send-file-to-fastapi-endpoint-using-postman
https://www.reddit.com/r/FastAPI/comments/pxupra/msg_field_required_type_value_errormissing_error/

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?