The loadBody() function allows more concise and intuitive loading of request bodies encoded in the scheme.
7 lines
194 B
Python
7 lines
194 B
Python
req = loadBody("json")
|
|
b64challenge = base64.b64encode(challenge).decode()
|
|
req['message'] = b64challenge
|
|
|
|
res = await corsFetch(licUrl, "POST", licHeaders, req, "json")
|
|
licence = res['license']
|