We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We can't have this: https://github.com/iron-io/functions/blob/master/api/server/runner.go#L92 An app could have thousands of routes, we only want to query what's required.
See #77 for discussion on how to solve this problem.
The text was updated successfully, but these errors were encountered:
Current docs in README for reference:
You can create a route with dynamic URL parameters that will be available inside your function by prefixing path segments with a :, for example:
:
$ curl -H "Content-Type: application/json" -X POST -d '{ "route": { "path":"/comments/:author_id/:num_page", "image":"IMAGE_NAME" } }' http://localhost:8080/v1/apps/myapp/routes
:author_id and :num_page in the path will be passed into your function as PARAM_AUTHOR_ID and PARAM_NUM_PAGE.
:author_id
:num_page
PARAM_AUTHOR_ID
PARAM_NUM_PAGE
See the Blog Example.
Sorry, something went wrong.
ucirello
No branches or pull requests
We can't have this: https://github.com/iron-io/functions/blob/master/api/server/runner.go#L92
An app could have thousands of routes, we only want to query what's required.
See #77 for discussion on how to solve this problem.
The text was updated successfully, but these errors were encountered: