I have saved the image as base64 in the SQL Server FileTable.
Now I want to send the address of this file with API in string format for Android to be displayed with the Picasso library.
Do you have a solution?
I have saved the image as base64 in the SQL Server FileTable.
Now I want to send the address of this file with API in string format for Android to be displayed with the Picasso library.
Do you have a solution?
Copyright © 2021 Jogjafile Inc.
FileTable files aren't natively accessible over http using a URI. They are available over SMB using a UNC, eg
\\someserver\someshare\somefolder\somefile.jpgIf you want to serve the images to an Android app, you'll need to add an HTTP endpoint to your back-end application to deliver file over http.