Closed
Description
I am trying to the use the azure_svc_blobstorage
crate to obtain a user delegation key (i.e. perform this operation). However, the Builder
API requires comp
and restype
arguments that are all ready predefined in the url_str
for the operation:
I am unsure what values I should be passing to the builder, or if this is a bug. My current code is as follows, but is rejected with "Value for one of the query parameters specified in the request URI is invalid."
let key = client
.service()
.get_user_delegation_key("service", "userdelegationkey", body, "2021-02-12")
.into_future()
.await?;