[iOS] Feature Request: Shareable Linked Files in Attachments
When there are "Linked Files" in attachments, I can open the file on the desktop, but can only "delete" it on the current iOS APP. (See the red rectangular in the screenshot here: https://sm.ms/image/uOixGaU7mqyzQBJ )
But these files actually have links (URLs). What I want is to make these links **shareable** - i.e. I can copy the link, share it to a shortcut and open it using another iOS APP, etc. This feature could be a big step to my workflow automation.
But these files actually have links (URLs). What I want is to make these links **shareable** - i.e. I can copy the link, share it to a shortcut and open it using another iOS APP, etc. This feature could be a big step to my workflow automation.
In any case, Zotero doesn't support viewing of linked files on iOS.
Every item/attachment (even linked files) has a `key` - if you inspect elements on the web library, you'll find a `data-key` attribute.
Plug this `key` in Zotero's Web API:
https://api.zotero.org/users/{your-user-id}/items/{key}?key={your-api-key}
This request returns a json like this:
{
"key": "{key}",
...
"data": {
"key": "{key}",
"linkMode": "linked_file",
...
"path": "/Users/miraclexyz/Library/Mobile Documents/iCloud~md~obsidian/Documents/XYZ@personal/Acadamic/Cao et al. - 2020 - How to Talk When a Machine is Listening Corporate.md",
}
}
What I want is the `data.path` string. If this `path` becomes shareable, I can share it to a shortcut which parses the path and converts it into an iCloud/Obsidian URL scheme, so I can directly open it using other APPs (eg. Obsidian).
We can consider making the filename copyable from the context menu, though.
yes, this would be very helpful for locating files that aren't located in Zotero but in another cloud storage provider.