Need to access files from File Store for Web Client Hosting

Need to access files from File Store for Web Client Hosting

If your application is hosted in Catalyst, then you can use the download link of the file itself to render the same in your Web Client. 

For Example :

<img src=“/baas/v1/project/1611000000****/folder/1611000000012142/file/16110000000*****/download>

The download link can be obtained using the Catalyst Web SDK in your client itself. 


    • Related Articles

    • Online IDE for Web Client Hosting

      As of now, we do not have the support for built in IDE inside the Catalyst console for web client hosting. You have to work with the client files locally and then upload the same. Instead, we would suggest you to use the Catalyst CLI which will help ...
    • Catalyst Web Client inacessible

      You might have enabled API Gateway for your project. If you have enabled API Gateway, the URLs of all your newly created web client(html) files and functions will become inaccessible until you create APIs for them. You can create an API for your ...
    • Attaching a file from File Store in an email

      As of now, we do not have the support for attaching files while sending email.  For now, we would suggest you to upload the file to the Catalyst Filestore, and create an URL for the same using the Catalyst functions and share the URL via mail to ...
    • Unable to load image from file store in Web Client

      Kindly make sure that the user is signed in for the image to be rendered. 
    • Code sample to upload files in File Store using Java

      import java.io.File; import java.util.List; import java.util.logging.Level; import java.util.logging.Logger; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import ...