Get Image URL

0
Hi, Is there a way to get image’s URL stored in system.image entity. I want to pass this image to social media API for uploading. Is there any other way to achieve it.
asked
3 answers
3

Hi,

There is not a public link generated by Mendix for each image stored in that entity.  However, you could

  • download the Deeplink module https://marketplace.mendix.com/link/component/43 
  • create a page that displays (or downloads) an image object
  • create a microflow that accepts a parameter that identifies a specific image object and then displays it in the page you created
  • create a deeplink that calls this microflow

Then your deeplink would be accessible to people not logged into your app and would provide access to some or all of your images.

Hope that helps,

Mike

answered
1

Another possible solution is creating an open REST service that returns the image. See this article: https://forum.mendix.com/link/questions/104982

answered
1

This the module can display image Mendix Marketplace - Image Hosting

answered