1
0
mirror of https://github.com/actix/examples synced 2025-01-22 14:05:55 +01:00
2023-08-29 18:28:15 +01:00
..
2023-07-18 01:01:26 +01:00
2023-08-29 18:28:15 +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