Open writerity-narita opened 6 months ago
@writerity-mami-asakura
Pls review
▼Assignment 1
▼Assignment 2 レスポンスは200 理由:httpステータスコードで200は「リクエストは成功し、レスポンスとともに要求に応じた情報が返された」という意味だから
▼Assignment 3 レスポンスは201 理由:httpステータスコードで201は「リクエストは成功し、レスポンスとともに要求に応じた情報が返された」という意味だから
▼Assignment4 レスポンスは200 理由:リクエストは成功し、レスポンスとともに要求に応じた情報が返された
▼Assignment5 レスポンスは404 理由:削除が成功して該当するデータが検出できないため
@writerity-narita
POST,PUTですが、リクエスト時のBodyに余分な[]がついているので、更新結果でもう1階層入れ子状態になっています。
jsonが下記のようになっていて要素1だけ更新したいときは、[ ] は不要ですのでもう一度試してみてください! [ { 要素1 }, { 要素2 } ]
例えば、PUTの場合はこの状態の要素が返ってくるのが正しいです👇
@writerity-mami-asakura
レビューありがとうございます。
jsonが下記のようになっていて要素1だけ更新したいときは、[ ] は不要です
なるほど! やり直しました!
▼Post
▼Put
@writerity-narita ありがとうございます!かんぺきです! チケットのクローズをお願いしますmm
Description(contents) / ディスクリプション(内容): Screenshot of each request in postman and result 各課題の、リクエスト内容と結果のスクリーンショット
Preparation / 準備 https://my-json-server.typicode.com/timeriver/trg_api Above URL is to call API 上記がAPIコールのためのURLとなります。
You can see the data here too: データはこちらからも参照できます。 https://github.com/timeriver/trg_api/blob/main/db.json
Assignment 1: Basic Request/基本的なリクエスト1 - GET
send an API Request to post and GET information on all posts. Please share a screenshot of the Request content (URL) and the Body content.
postへAPI Requestを送信し、Postすべての情報をGETしてください。 Request内容(URL)と、Bodyの内容をスクリーンショットで共有してください。
Hint/ヒント: endpoint is https://my-json-server.typicode.com/timeriver/trg_api/posts GETのリクエスト先は https://my-json-server.typicode.com/timeriver/trg_api/posts
Assignment 2: Basic Request/基本的なリクエスト2 - GET
Share the following screenshot and answer.
下記のスクリーンショットと回答を共有してください。
Assignment 3: Basic Request/基本的なリクエスト3 - POST
Share the following screenshot and answer.
下記のスクリーンショットと回答を共有してください。
Hint/ヒント: You can use Body > Row to post Body > Row を利用してPOSTができます
Assignment 4: Basic Request/基本的なリクエスト4 - PUT
Share the following screenshots and answer.
下記のスクリーンショットと回答を共有してください。
Hint/ヒント: You can use Body > Row to post Body > Row を利用してPOSTができます
Assignment 5: Basic Request/基本的なリクエスト5 - DELETE
Share the following screenshots.
下記のスクリーンショットを共有してください。
Reference/参考
https://jsonplaceholder.typicode.com/guide/ https://blog.postman.com/what-are-http-status-codes/ https://restfulapi.net/http-methods/