Parse JSON from post request
Accept a post request and try to parse it expecting the data is formated in JSON.
This commit is contained in:
commit
d8ca63ab37
4 changed files with 1152 additions and 0 deletions
src
24
src/main.rs
Normal file
24
src/main.rs
Normal file
|
@ -0,0 +1,24 @@
|
|||
#![feature(proc_macro_hygiene, decl_macro)]
|
||||
|
||||
use rocket::{get, post, routes};
|
||||
use rocket_contrib::json::Json;
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
#[derive(Debug, Deserialize, Serialize)]
|
||||
struct Data (serde_json::Value);
|
||||
|
||||
#[get("/")]
|
||||
fn index() -> &'static str {
|
||||
"Hello, webhookey!"
|
||||
}
|
||||
|
||||
#[post("/", format = "json", data = "<data>")]
|
||||
fn receive_hook(data: Json<Data>) -> String {
|
||||
format!("data: {:?}", data)
|
||||
}
|
||||
|
||||
fn main() {
|
||||
rocket::ignite()
|
||||
.mount("/", routes![index, receive_hook])
|
||||
.launch();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue