Hello, I'm having a problem where the UploadResult returned from the method Upload in the Cloudinary class is completely empty, and this problem happens randomly.
The code:
public string Put(string imageUrl)
{
var fileDescription = new FileDescription(imageUrl);
var result = this.provider.Upload(new ImageUploadParams{ File = fileDescription });
return result.Uri.AbsoluteUri;
}
Hello, I'm having a problem where the UploadResult returned from the method Upload in the Cloudinary class is completely empty, and this problem happens randomly.
The code: