1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01:00
examples/json/json
2024-07-07 01:42:16 +01:00
..
src chore: remove redundant imports 2024-02-20 03:29:12 +00:00
Cargo.toml chore: update pin-project 2024-07-07 01:42:16 +01:00
client.py fix links 2022-03-08 15:49:32 +00:00
README.md format markdown 2022-03-06 00:43:10 +00:00

json

Json's Getting Started guide using json (serde-json or json-rust) for Actix Web

Usage

server

cd json/json
cargo run
# Started http server: 127.0.0.1:8080

web client

With Postman or Rested

  • POST / (embed serde-json):

    • method : POST
    • url : http://127.0.0.1:8080/
    • header : Content-Type = application/json
    • body (raw) : {"name": "Test user", "number": 100}
  • POST /manual (manual serde-json):

    • method : POST
    • url : http://127.0.0.1:8080/manual
    • header : Content-Type = application/json
    • body (raw) : {"name": "Test user", "number": 100}
  • POST /mjsonrust (manual json-rust):

    • method : POST
    • url : http://127.0.0.1:8080/mjsonrust
    • header : Content-Type = application/json
    • body (raw) : {"name": "Test user", "number": 100} (you can also test {notjson})

python client

  • pip install aiohttp
  • python client.py

if ubuntu :

  • pip3 install aiohttp
  • python3 client.py