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 3 years have passed since last update.

Postmanを使ったAPIへのリクエストの投げ方。

Posted at

#はじめに
API開発時に、リクエストを投げてどのような値が返ってくるか確かめたいときに、CUIで操作するのは何かと不便です。そこで、ここではPostmanを使う方法を紹介します。

#準備
https://www.postman.com/

Postmanのページから自身の環境にあったverをダウンロードします。
インストラクションに従ってインストールを行ってください。

#Posatmanに使うAPIの作成
Postmanでリクエストを投げた先のAPIを作成します。
ここでは例として簡単なAPIを用います。

@app.route('/test',methods=["POST"])
def test():
    data=request.get_json()
    response = {
        "test": data
    }
    return jsonify(response)

#Postmanを用いたリクエスト

image.png

Postmanを起動すると、餓えのような画面が出てきますので、Postを選択し、URLを入力します。

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?