Make image link shorter

is there any way to make this link shorter ?

moreover, i can download this image when I click it from device attributes, but when I click it from dashboard I receive this message :

This XML file does not appear to have any style information associated with it. The document tree is shown below.

<Error>
  <Code>AccessDenied</Code>
  <Message>Access denied.</Message>
  <Details>
    Anonymous caller does not have storage.objects.get access to the Google Cloud Storage object. 
    Permission 'storage.objects.get' denied on resource (or it may not exist).
  </Details>
</Error>

Kindly advice

is there any way to make this link shorter ?

There is not a way to make the link itself shorter, but you can use markdown to change what’s displayed. In the cell template, you would do:

[Your Custom Text]({{value}})

but when I click it from dashboard I receive this message

This is because the default template, {{format value}} will result in special characters being escaped, resulting in an invalid URL. You can fix it two ways:

  1. Switch the template to {{{value}}} (notice the triple curly braces to remove escaping)
  2. Use the Markdown syntax above.

Details on Handlebar HTML escaping can be found here:

https://handlebarsjs.com/guide/#html-escaping