0

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?

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
fafa
  • 1

1 Answers1

1

FileTable files aren't natively accessible over http using a URI. They are available over SMB using a UNC, eg \\someserver\someshare\somefolder\somefile.jpg

If 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.

David Browne - Microsoft
  • 80,331
  • 6
  • 39
  • 67
  • thank you .Finally, I made a URL from the image and posted the same link And it was fixed – fafa Jul 17 '22 at 07:28