Article page

API送信テスト

Back to month Previous article Next article

curl で送信できるかを確認した。

コードブロック(syntax highlight)

puts "hello, world!"

mermaid 記法

sequenceDiagram participant Client participant Server participant Database Client->>+Server: リクエスト送信 Server->>+Database: データ問い合わせ Database-->>-Server: 結果返却 Server-->>-Client: レスポンス送信 Note over Client,Server: REST API通信 alt データあり Client->>Server: データ更新要求 Server->>Database: 更新実行 else データなし Client->>Server: データ作成要求 Server->>Database: 作成実行 end
Back to month Previous article Next article