Hello, I think get_shared_link_metadata API has a bug with the new "/scl" links.
When I send it a link to a shared folder and path to a file inside it:
// https://api.dropboxapi.com/2/sharing/get_shared_link_metadata
{path: "/001 (2).zip",
url: "https://www.dropbox.com/scl/fo/ppu9pgy84/h?rlkey=90bu"}
The response is:
{
".tag": "file",
"url": "https://www.dropbox.com/scl/fo/ppu9pgy84/h?rlkey=90bu&dl=0",
"id": "id:2UW_T...",
"name": "001 (2).zip",
}
In the past, the returned "url" was direct to the file, but now it's just the same folder url with "&dl=0".
I need the direct link. later I need to convert it to a direct download link to the file.
Please help.