I am struggling to get the authentication parameters from an external system that return the token via a call to my page with querystring parameter. Such as:
http://mysiteurl?ticket=qjoijfe1239hfnlkh10344lknvf1049u
How do I get the ticket value ?
Using this callback
@app.callback(Output(‘page-content’, ‘children’),
Input(‘url’, ‘pathname’))
def display_page(pathname):
print(‘pathname=’,pathname)
…
I get the called page in my site but without the full URL or without the querystring.
Thanks