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

This node falls below the community's threshold of quality. You may see it by logging in.
  • Comment on Re^8: How can i capture the site_id in Dancer 2 app?

Replies are listed 'Best First'.
Re^9: How can i capture the site_id in Dancer 2 app?
by 1nickt (Canon) on Jun 17, 2021 at 14:06 UTC

    site_id is not some magical value that appears inside your endpoint handler. You have defined your endpoint as accepting a param site_id to be represented in the endpoint URL as :site_id after the first slash. The caller of your endpoint supplies the value in the URL.

    In the example call you showed above you are not calling the endpoint with a route parameter that would occupy the place of the token you defined in the handler. Try it as I suggested earlier:

    https://testchandan.com:5001/42
    or
    https://testchandan.com:5001/HELLO


    The way forward always starts with a minimal test.
    A reply falls below the community's threshold of quality. You may see it by logging in.