http://qs321.pair.com?node_id=11133961


in reply to Re^10: How can i capture the site_id in Dancer 2 app?
in thread How can i capture the site_id in Dancer 2 app?

No, you don't understand how route parameters work.

Put ONLY this in a file called something.pl and run it with perl something.pl.

use strict; use warnings; use Dancer2; get '/:site_id' => sub { my $id = route_parameters->get('site_id'); print "$id" . "\n"; }; dance;

Then in a separate window, run curl localhost:3000/MY_TOKEN_VALUE (or load that URL in a browser).

In the first window you will see printed "MY_TOKEN_VALUE".

This is as simple as I can make it.

Where in your design will the site ID come from? Do you think that it is known to the app? Or to the caller?


The way forward always starts with a minimal test.