Post Rocket route is forwarded (Rust) [duplicate]

You seem to be sending JSON from JavaScript but are expecting Form parameters on the server.

You need to change input: Form<FavoriteInput> with input: Json<FavoriteInput>.