6
10

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

HTTPテスト > Postman

Posted at

Postman

HTTP送信を簡単にシミュレートできるPostmanをインストールして使ってみます。
以下のページからダウンロードします。環境に応じてダウンロードしてください。

Postman | API Development Environment

image

ダウンロードの画面にすごく簡単に使うイメージ画像があります。
すごく簡略化してありますが、理解してしまえば、この画像の通りだなと腑に落ちます。

image

インストール

インストーラーを実行するとインストール始まります。
image

しばらく待つとPostmanが立ち上がります。
image

Postmanが立ち上がりました。
これでインストール終了です。
image

POSTMANでのPOSTテスト

以下、IBMのLanguage Translatorを例に説明します。
細かい設定は以下に記載しています。
Language Translator > IBM Language Translator > チュートリアル Step1 - Qiita

Authの入力

新規設定、Autuorizationタブにて以下を入力します。

image

Headerの入力

Headerタブにて以下を入力します。(順不同)

  • Accept:application/json
  • Content-Type:application/json

image

※Authorizationは自動で登録されます。

Bodyの入力

Bodyタブで以下のように入力します。

  • text:Hello
  • source:en
  • target:ja

image

実行

Sendボタンを押します。

image

しばらく待つと画面下部に応答結果が表示されます。

image

6
10
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
6
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?