-
Notifications
You must be signed in to change notification settings - Fork 870
Description
I'd like to upload to S3 using pre-signed urls from Unity (if I can get past all the SDK bugs in uploading .. sigh ... is anything being done on any of them?) but I get this message when I add a call to GetPreSignedURL (even just pasting in the sample code fails):
Assets/Test.cs(256,34): error CS1061: Type Amazon.S3.AmazonS3Client' does not contain a definition for GetPreSignedURL' and no extension method GetPreSignedURL' of type Amazon.S3.AmazonS3Client' could be found. Are you missing an assembly reference?
I'm not missing an assembly reference .. the method just ain't there. If you look at the source code for the full .Net version, there's stuff in there for it .. but a search in the Mobile SDK doesn't turn up anything except in DynamoDB, where it's using the request to do the work:
this.s3ClientCache.GetClient(this.RegionAsEndpoint).GeneratePreSignedURL(....)
I did searches here on Git using the "This repository" search.
Sorry for the rambling, I've been fighting the SDK and S3 all day and my brain is fried. All I want to do is upload a file, it shouldn't be nearly this hard.