apiFileStorage static method

Uri apiFileStorage(
  1. String fileId
)

parses a URL to the storage action for a file (saving the file).

@param fileId File UUID

@see com.uploadcare.api.Client

Implementation

static Uri apiFileStorage(String fileId) {
  return Uri.https(_API_BASE, "/files/" + fileId + "/storage/");
}