Forum Discussion
TitusH
11 months agoNew Contributor
Connect Server Error
When I try connecting to One password connect server, I get this error:
(
[status] => 408
[message] => sync did not complete within timeout, please retry the request
)
I am connect...
LieutenantLefse
2 years agoOccasional Contributor
I found this thread as I had the same issue, trying to find all items with attachments, across thousands of items. If you're willing to set up the 1Password CLI and have jq available, here's how to find them all:
op --format json item list | op --format=json item get - | jq 'select(.files != null) | {id, title, filename: .files[].name}'
I know it's an old thread and this doesn't help on iOS, but since I worked out the jq I might as well post it here for posterity. It wouldn't take much more to pipe that into another op command to add a tag to each item.