View source: R/dataManagement.R
| uploadFileSigned | R Documentation |
Upload a design file of any size to an app-managed bucket using the signed
S3 URL approach recommended by AutoDesk Platform Services (APS). Unlike
uploadFile, this function supports files larger than 100 MB.
uploadFileSigned(file = NULL, token = NULL, bucket = "mybucket")
file |
A string. File path. |
token |
A string or |
bucket |
A string. Unique bucket name. Defaults to |
An object containing the finalized upload response with
bucketKey, objectId, objectKey, size, and
location.
## Not run:
# Upload a large file using signed S3 URLs
resp <- uploadFileSigned(
file = "path/to/large_model.rvt",
token = myToken,
bucket = "mybucket"
)
myUrn <- resp$content$objectId
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.