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.

Talend API Testerを使ってAPIの動作確認

Last updated at Posted at 2023-12-28

概要

  • Chromeの拡張機能「Talend API Tester」を追加し、作成したAPIの動作を確認する手順を記述。
  • PowerShellにてcurlコマンドを用いて動作確認する方法も併せて記述。
  • Spring bootでHelloWorldするまでの手順内で使用したコードを使用。
  • 使用環境:Windows 11 Pro、Chrome、PowerShell

API (Application Programming Interface)

その機能とは無関係なプログラムとかからその機能を利用できるようにするために用意されている、その機能にお仕事を依頼するための窓口(の使い方に関する決まり事)のことです。

APIとは - 「分かりそう」で「分からない」でも「分かった」気になれるIT用語辞典

Talend API Tester

  • Webクライアントツール
  • Webブラウザ上で簡単にAPIコールすることができる
  • Google Chromeの拡張機能
  • 無料で使える
  • リクエスト情報を複数保管しておける(再利用できる)
  • リクエスト情報をカテゴリ分けして整理することができる

【Web API】Talend API Testerを使ってみた - isoroot開発者ブログ

拡張機能の追加方法

  • Chromeを起動。拡張機能Chromeウェブストアにアクセスの順で選択。
    image.png
    image.png

  • Chromeに追加を押す。
    image.png

  • Spring Bootの起動。
    image.png
    image.png

Talend API Testerへのアクセス

  • Chromeにて拡張機能のアイコンを押し、Talend API Testerを押す。
    image.png

APIの動作確認

  • GETを選択し、希望のURLを入力。今回「hello」「test api」それぞれのResponseがあるか確認。
    image.png
    image.png

Spring Bootを起動していなかった場合や指定しているURLが間違っていた場合は以下のような表示がでる。
image.png

PowerShellにて確認する方法

  • curlコマンドを使用。Spring Boot起動時。
    image.png
    image.png

Talend API Tester同様、Spring Bootを起動していなかった場合や指定しているURLが間違っていた場合は以下のようなエラー表示がでる。
image.png

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?