Sending images from Wix database to an app through http request

@acteevent Yes, before you send the items out do something like:


//...
items = items.map(e => {e.image = `https://static.wixstatic.com/media/${e.image.split('/')[3]}`; return e;});
//..