Hi @Mujahid_Aliyu, @ahmaddiab, another workaround, not using DownThemAll, could be to do something like this from your terminal:
TOKEN="your_secret_token"
curl -s "https://[kf_url]/api/v2/assets/[asset_uid]/data.json" \
-H "Authorization: Token $TOKEN" \
> data.json
for URL in $(cat data.json | jq '.results[]._attachments[].download_url' | sed s/\"//g); do \
FILENAME=$(echo $URL | awk -F "%2F" '{print $(NF)}'); \
wget "$URL" -O "$FILENAME" --header="Authorization: Token $TOKEN"; \
done
