Using this command line incantation:
AppClipCodeGenerator generate -u https://myapp.app/clip -i 9 -o ~/Desktop/appClip.svg
everything works as expected. However, using this one:
AppClipCodeGenerator generate -u https://myapp.app/clip?p=1 -i 9 -o ~/Desktop/appClip.svg
ie, just trying to pass in 1 parameter via "?p=1", it fails with
no matches found: https://myapp.app/clip?p=1
In my case, clip is a Servlet which expects the parameter named p.
Any ideas?