Is there a way for Flask to accept a full URL as a URL parameter?
I am aware that <path:something> accepts paths with slashes. However I need to accept everything including a query string after ?, and path doesn't capture that.
http://example.com/someurl.com?andother?yetanother
I want to capture someurl.com?andother?yetanother. I don't know ahead of time what query args, if any, will be supplied. I'd like to avoid having to rebuild the query string from request.args.
request.argsto get at those. However, I'd expect those to be valid query parameters; normally, you'd seehttp://example.com?foo=bar&baz=quux. What is it that you're trying to accomplish?http://someapi/?full_param="someurl.com?blah?blah?blah".