Hi there,
I'm trying to make us of Jasperserver REST API and I'm getting stuck while trying to get the JSESSIONID for authorizing the GET calls. Does anyone know how should I do this using jQuery? Or alternatively, how could I do it? I would appreciate some help, as it's quite urgent...
Thanks in advance,
0 Answers:
No answers yet
i get it using python:
import requests
from requests.auth import HTTPBasicAuth
r = requests.get('https://mobiledemo.jaspersoft.com/jasperserver-pro/flow.html?_flowId=homeFlow', auth = HTTPBasicAuth('joeuser', 'joeuser'))
print(r.cookie)