Automatically download certificate on Python device

This commit is contained in:
2024-07-03 22:19:56 +02:00
parent 9cba9c5f0a
commit 6ad50657a5
4 changed files with 50 additions and 2 deletions

View File

@@ -72,3 +72,12 @@ if status == "Pending":
exit(0)
print("Device is successfully enrolled!")
print("Check device certificate")
if not os.path.isfile(args.dev_crt_path):
print("Retrieve certificate...")
cert = api.device_certificate()
with open(args.dev_crt_path, "w") as f:
f.write(cert)
print("Done. ready to operate.")