Home > database >  firebase storage custom html page for errors like permission denied?
firebase storage custom html page for errors like permission denied?

Time:01-03

Is there a way to show a custom html page or redirect a user when storage throws errors like if file is not available, not sufficient permissions or in case of any other issues when the file can't be accessed/displayed?

So instead of the below

enter image description here

We need to show a custom page with our brand designs.

What are the options here?

CodePudding user response:

No, there is not. You are using an API endpoint (download URL) meant for programmatic consumption or inline page insertion, not for loading into a browser to present a full web page.

  • Related