DocsLicense Managementbrowser_add_license

browser_add_license

Browser Add License

Install a license file to activate the browser. Provide either a file path or base64-encoded content. The license is validated against the hardware fingerprint. Returns success/failure with validation details.

Usage Example

1234567891011
import asyncio
from owl_browser import OwlBrowser, RemoteConfig
# Async usage
async with OwlBrowser(config) as browser:
context = await browser.create_context()
context_id = context["context_id"]
await browser.add_license(
license_path="value"
)

Parameters

Required

license_pathstringrequired

Absolute path to the license file (.olic extension). Example: '/path/to/license.olic'

Response

Returns a JSON object with the operation result.

{
  "success": true,
  "result": <value>
}