xiaohongshu_login
Log in to Xiaohongshu accounts using browser automation with optional headless mode and custom Chrome path for account management.
Instructions
登录小红书账号
Args: headless: 是否使用无头模式,默认False(建议使用有界面模式进行扫码) chrome_path: Chrome浏览器可执行文件路径,可选
Returns: 登录结果消息
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chrome_path | No | ||
headless | No |
Input Schema (JSON Schema)
{
"properties": {
"chrome_path": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Chrome Path"
},
"headless": {
"default": false,
"title": "Headless",
"type": "boolean"
}
},
"title": "xiaohongshu_loginArguments",
"type": "object"
}