Get link to image file at Parse.com
android, file, image, parse-platform
Solution
You can obtain the URL of a file using the `getUrl()` method. So if `imageFile` is a `ParseFile`, you would get the URL in this manner:
imageFile.getUrl();
Problem
I have File column in my table. The file represents image. File is ok, and I can get it as byte array. Can I get a direct (web) link to this image?