//library/com.uploadcare.android.library.api/UploadcareClient/createGroupSignedAsync
createGroupSignedAsync
[androidJvm]
Content
fun createGroupSignedAsync(context: Context, fileIds: List<String>, signature: String, expire: String, jsonpCallback: String? = null, callback: UploadcareGroupCallback? = null)
More info
Create files group from a set of files by using their UUIDs.
Parameters
androidJvm
| Name | Summary |
|---|---|
| callback | callback UploadcareGroupCallback with either an UploadcareGroup response or a failure exception. |
| expire | sets the time until your signature is valid. It is a Unix time.(ex 1454902434) |
| fileIds | That parameter defines a set of files you want to join in a group. |
| jsonpCallback | Sets the name of your JSONP callback function. |
| signature | is a string sent along with your upload request. It requires your Uploadcare project secret key and hence should be crafted on your back end. |