We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8de6d83 commit b22d943Copy full SHA for b22d943
ee/api/chalicelib/core/unlock.py
@@ -24,7 +24,7 @@ def check():
24
environ["numberOfSeats"] = "0"
25
return
26
print(f"validating: {helper.obfuscate(license)}")
27
- r = requests.post('https://api.openreplay.com/os/license', json={"mid": __get_mid(), "license": get_license()})
+ r = requests.post('https://api.openreplay.com/license/validate', json={"mid": __get_mid(), "license": get_license()})
28
if r.status_code != 200 or "errors" in r.json() or not r.json()["data"].get("valid"):
29
print("license validation failed")
30
print(r.text)
0 commit comments