1
0
mirror of https://github.com/actix/examples synced 2024-11-23 14:31:07 +01:00
examples/cors/backend
2023-07-18 01:01:26 +01:00
..
src improve mysql readme 2023-07-18 01:01:26 +01:00
Cargo.toml fix vue example ports 2023-07-17 22:26:11 +01:00
README.md doc: add README.md into cors/backend (#618) 2023-04-06 11:11:44 +01:00

actix_cors::Cors

Running Server

cd cors/backend
cargo run
# starting HTTP server at http://localhost:8080

web client

  • http://localhost:8080/user/info
    // payload structure
    {
      "username": "username",
      "email": "email",
      "password": "password",
      "confirm_password": "password"
    }
    

Others