You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I didn't find an API like PresignedStatObject in the API, but there is PresignedHeadObject in the Go SDK.
Currently, this is the only way I can do it,
varargs=newPresignedGetObjectArgs().WithBucket(bucket).WithObject(object).WithExpiry(expiry);varfieldInfo=typeof(PresignedGetObjectArgs).GetProperty("RequestMethod",BindingFlags.NonPublic|BindingFlags.Instance);fieldInfo?.SetValue(args,HttpMethod.Head);return_client.PresignedGetObjectAsync(args);// This URL is the one I'm looking for.
but I feel it's not native.
The text was updated successfully, but these errors were encountered:
I didn't find an API like
PresignedStatObject
in the API, but there is PresignedHeadObject in the Go SDK.Currently, this is the only way I can do it,
but I feel it's not native.
The text was updated successfully, but these errors were encountered: