#4858 makes it possible to pass HTTP requests arguments to app documents. However, the functions autoload_server and pull_session do not allow for sending request parameters, because they already add a query string to the URL.
For instance, autoload_server adds /autoload.js?bokeh-autoload-element=...&bokeh-session-id=... to the end of the URL. If I add the query string ?N=10 to the end of my app_path, then the URL will result in ?N=10/autoload.js?bokeh-autoload-element=...&bokeh-session-id=... which is not a valid URL.
It would be great if there was a way to pass request arguments to these functions so that they automatically add it to the URL in a correct way.
#4858 makes it possible to pass HTTP requests arguments to app documents. However, the functions
autoload_serverandpull_sessiondo not allow for sending request parameters, because they already add a query string to the URL.For instance,
autoload_serveradds/autoload.js?bokeh-autoload-element=...&bokeh-session-id=...to the end of the URL. If I add the query string?N=10to the end of myapp_path, then the URL will result in?N=10/autoload.js?bokeh-autoload-element=...&bokeh-session-id=...which is not a valid URL.It would be great if there was a way to pass request arguments to these functions so that they automatically add it to the URL in a correct way.