First of all, you need to have a valid license file. You can get it by contacting our sales team. After you get the license file, you need to convert it to base64 format. To do this use these commands:
[convert]::ToBase64String((Get-Content -path "your_file_path" -Encoding byte))
base64 license.filepath
Where file path is a path to your license file.Example:
base64 ./regula.license
To use the web components on test environments, set the base64 license value to the license attribute:
<document-reader license="BASE64_LICENSE_KEY"></document-reader>
where BASE64_LICENSE_KEY is the result of a conversion of your license file to base64 format.
More info can be found at this link.
Comments
Please sign in to leave a comment.