-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
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
Add the ability to parse URL parameters #4
Comments
@brendo is there any way this commit can be extended to track other parameters from a URL? Just like explained above? |
The above commit is pretty crude, we could validate just the base part of the URL, and then leave the params alone. I am unsure if the backend has the same environment context as the frontend, so parsing may need a little extra work. Doable though! |
Solved by #27. |
Is #27 committed, working and released? No. Please don't close issues until it is resolved. |
Sorry, John! |
The |
I'd like to be able to use URL parameters in XML Import jobs. So given the following:
Job URL
http://example.com/symphony/extension/xmlimporter/importers/run/importername/?auth-token=abcdefgh&id=123456789
Source URL
http://source.com/path/to.xml?id={$url-id}
The resulting request would be made to:
http://source.com/path/to.xml?id=123456789
The text was updated successfully, but these errors were encountered: