browser_get_hardware_fingerprint
Browser Get Hardware Fingerprint
Get the machine's hardware fingerprint used for license binding. Provide this to obtain a license file tied to your hardware. The fingerprint is a unique identifier based on hardware characteristics.
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.get_hardware_fingerprint(
)
Response
Returns a JSON object with the operation result.
{
"success": true,
"result": <value>
}