LoginSignup
0
0

More than 5 years have passed since last update.

Fiddlerを使ってWebAPIをデバッグする際に、個人的によく忘れること

Last updated at Posted at 2018-11-27

Fiddlerを使ってWebAPIをデバッグする際に、個人的によく忘れることをまとめました。
何か思いつけば随時追記します。

1. Content-Type ヘッダーの設定

種類 Content-Type
json Content-Type: application/json
csv Content-Type: text/csv

他のものは Content-Typeの一覧 を参照

2. JSONの書き方

JSON Data Types を参照

sample.json
{
    "object": {
        "string":"abcdefg",
        "number":12345.123,
        "boolean":true,
        "array":["a","b","c"],
        "null":null
    }
}
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