1. ホーム
  2. カール

[解決済み】PostManで特定のCURLをシミュレートしてみる

2022-04-01 15:38:29

質問

Postmanを使って、APIサーバへのCurlリクエストをいくつかテストしているところです。API開発者がcurlコマンドをくれたのですが、Postmanからそれを送ることができません。どうすればPostmanからそのようなリクエストをすることができますか?

curl -X POST "https://api-server.com/API/index.php/member/signin" -d "{"description":"","phone":"","lastname":"","app_version":"2.6.2","firstname":"","password":"my_pass","city":"","apikey":"213","lang":"fr","platform":"1","email":"[email protected]","pseudo":"example"}"

--0xKhTmLbOuNdArY
Content-Disposition: form-data; name="userfile"; filename="profil.jpg"
Content-Type: image/jpeg
Content-Transfer-Encoding: binary

<ffd8ffe0 00104a46 49460001 01010048 ... a00fffd9>

—0xKhTmLbOuNdArY—

解決方法は?

よりシンプルな方法としては

  1. POSTMANを開く
  2. 左上のquot;import"タブをクリックします。
  3. Raw Textオプションを選択し、cURLコマンドを貼り付けます。
  4. インポートをクリックすると、Postmanビルダーにコマンドが表示されます。
  5. Sendをクリックして、コマンドを投稿します。