Cryptolens抛出错误:未找到活动订阅



问题是我看了几个视频,并在网站https://app.cryptolens.io/上阅读了指南,但它不起作用:(

我很高兴得到任何支持。你可以建议另一个系统在Python上创建和管理许可密钥。
from licensing.models import *
from licensing.methods import Key, Helpers
RSAPubKey = "<RSAKeyValue><Modulus>sDHS5RJSXyqiciGkBlpvKsodTefBQBVG+3RZCmtnZ+j0AGYpx19Q1aYpfRiN1CG9NcQhP6VLm1SLM4Wf63qAHiUh/k8PjYroNoxQsqbYw/0lPc+TbsyAWJvDWeIFsPwLpv3v0uOvj1EtRXja+ddBaZAp1dqAVIMVNRLl3J44vCe0PCuCh30jZlSWf5Gzf0pxAhQjaGYKl4nRfpjxGA/9YGkt8Qj5/+nT/yJk0HW2oRCneRW78XWh6e2EX6IGDbVSausypNOwW9gb1bGPvsJG3nFZyJrvumLPD782fHFKEzCqMT0RkVDXkQntxzcj/3uzHqId3us7KNQKvGZqr4nMQQ==</Modulus><Exponent>AQAB</Exponent></RSAKeyValue>"
auth = "WyI1MDY1NDc1IiwiQjlTMVZ5ZENzRnVTekt5UGF6SXhSMWJDaE92Qm0ybk9QdVN6aE5YdCJd"
result = Key.activate(token=auth,
rsa_pub_key=RSAPubKey,
product_id=12740, 
key="KXVIM-FZEKV-LPVEX-JIYTD",
machine_code=Helpers.GetMachineCode())
if result[0] == None or not Helpers.IsOnRightMachine(result[0]):
print("The license does not work: {0}".format(result[1]))
else:
# everything went fine if we are here!
print("The license is valid!")
license_key = result[0]
print("Feature 1: " + str(license_key.f1))
print("License expires: " + str(license_key.expires))

有密钥,令牌和其他信息:https://docs.google.com/document/d/11BIbyHu3Q22nMGuDF4XdItkmdds1w6pwZuryzUseIVs/edit?usp=sharing

问题是更新账单信息,也就是说我需要在页面https://app.cryptolens.io/billing上输入卡片数据。

p。s .

当我创建我的帐户时,问题不是。

最新更新