I would like to get parameter on my flow, for example, http://localhost:8000/?param1=12
.
If i want to recup param1 in my application, how and where can i do it ?
I would like to get parameter on my flow, for example, http://localhost:8000/?param1=12
.
If i want to recup param1 in my application, how and where can i do it ?
httproute
component/endpoint/
+ check respond automatically
code
component and join it with HTTP route
code
you can use:// now can get a value from query arguments
value.query.param1
// Performs next proccessing
send(0, value);
Or you can use httplistener
component but this component captures all requests. httplistener
has contain same properties like httproute
.