Lecturas De Marcadores
Inspeccionar Ubicacion Antes De Obtener Detalles
Bookmark read commands are designed for large accounts. Start with counts and shallow trees, collect likely IDs, then fetch only the records that matter.
Count
Comprobar Que Tan Grande Es Una Carpeta
webcull bookmarks count --path "/Marketing/Competitors"
{
"success": "true",
"count": 84,
"parent_id": 2301
}
Use the count before tree expansion. If the count is large, lower --limit, lower --max-depth, or choose a narrower path.
Árbol
Listar Un Arbol De Carpetas Limitado
webcull bookmarks tree --path "/Marketing" --max-depth 1 --limit 25 --fields id,parent_id,type,title,url
{
"success": "true",
"items": [
{
"id": 2301,
"parent_id": 2000,
"type": "folder",
"title": "Competitors",
"url": ""
},
{
"id": 2302,
"parent_id": 2301,
"type": "bookmark",
"title": "Acme pricing",
"url": "https://acme.example/pricing"
}
],
"returned": 2,
"parent_id": 2000,
"max_depth": 1,
"page": 1
}
idEl ID del marcador o carpeta que se pasará a comandos posteriores
get o graph.parent_idLa carpeta o elemento padre que contiene este resultado.
returnedCuántas filas se incluyeron después de aplicar sus límites.
Obtener
Obtener Marcadores Exactos Por ID
webcull bookmarks get --ids 2302,2303 --fields id,title,url,notes --max-metadata-chars 1200
{
"success": "true",
"items": [
{
"id": 2302,
"title": "Acme pricing",
"url": "https://acme.example/pricing",
"notes": "Compare packaging changes before Q3 planning."
}
],
"returned": 1
}
Obtenga notas y detalles más largos de marcadores solo después de reducir a un conjunto pequeño de ID. Esto mantiene legible la salida de terminal y facilita su revisión.