get_profile_fingerprint
Generate a random browser fingerprint for GoLogin profiles by specifying the OS type and workspace. Ensures unique and realistic browser configurations for automation tasks.
Instructions
Get a random fingerprint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
currentWorkspace | Yes | ||
os | Yes | ||
osSpec | No | ||
template | No |
Input Schema (JSON Schema)
{
"properties": {
"currentWorkspace": {
"type": "string"
},
"os": {
"enum": [
"lin",
"mac",
"win",
"android",
"android-cloud",
"macM1"
],
"type": "string"
},
"osSpec": {
"enum": [
"M1",
"M2",
"M3",
"M4",
"win11",
""
],
"type": "string"
},
"template": {
"type": "string"
}
},
"required": [
"os",
"currentWorkspace"
],
"type": "object"
}