您好:
一般WEB API,可以在
https://localhost:7270/Card
https://localhost:7270/Card/1
取得資料
而POST 可以在potman 傳遞要寫入
或 powershel
Invoke-RestMethod -SkipCertificateCheck https://localhost:7270/card `
-Method 'POST' `
-Headers @{ "Content-Type" = "application/json"; } `
-Body "{`"name`": `"mycard`",`"description`": `"sample card`"}"
那是否有辦法 直接在網址列
https://localhost:7270/Card/post.....
寫入一筆資料呢?
謝謝