应用许可证密钥
如果您没有许可证密钥,请查看如何获取许可证密钥。
ComPDF Conversion SDK 目前支持离线认证来验证许可证密钥。
了解:
复制许可证密钥
准确获取许可证密钥对于许可证的应用至关重要。
- 在您收到的电子邮件中,找到包含许可证密钥的 XML 文件。
- 打开 XML 文件,根据
<type>字段确定许可证类型。如果存在<type>online</type>,则表示在线许可证。如果存在<type>offline</type>或该字段不存在,则表示离线许可证。
在线许可证:
xml
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<license version="1">
<platform>mac</platform>
<starttime>xxxxxxxx</starttime>
<endtime>xxxxxxxx</endtime>
<type>online</type>
<key>LICENSE_KEY</key>
</license>离线许可证:
xml
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<license version="1">
<platform>mac</platform>
<starttime>xxxxxxxx</starttime>
<endtime>xxxxxxxx</endtime>
<key>LICENSE_KEY</key>
</license>- 复制
<key>LICENSE_KEY</key>字段中 LICENSE_KEY 位置的值。这就是您的许可证密钥。