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
The API responds with a 200 OK, and injecting Fiddler as a proxy, I can see the results in the body does not match the result type OptimizeSetWaitResult
So we end up with an empty list.
Pushing the results to external storage seem to be the only way to get a hold of the images until this gets fixed.
I am trying to get multiple resize image using one api call using this approach.
Image Sets Sample, Upload and Wait:
var request = new OptimizeSetUploadWaitRequest()
{
// Request level settings
Lossy = true,
};
request.AddSet(new ResizeImageSet {
// Individual settings
Name = "set1", Height = 10, Width = 10, Lossy = false
});
request.AddSet(new ResizeImageSet {
// Individual settings
Name = "set2", Height = 15, Width = 15, SamplingScheme = SamplingScheme.S444
});
var response = client.OptimizeWait("c:\your-image-location-on-disk.jpeg", request);
if(response.Result.StatusCode == HttpStatusCode.OK)
{
foreach (var item in result.Body.Results)
{
var url = item.KrakedUrl;
}
}
My code is :
I am getting result.success true but nothing about the resized images. also result.Body.Result count is also 0.
Image url : https://dmchyblmtj6td.cloudfront.net/content/products/4676-1-wilton-in-black-crystal-satin.jpg
I am doing anything wrong ?
The text was updated successfully, but these errors were encountered: