cloudinary-go icon indicating copy to clipboard operation
cloudinary-go copied to clipboard

Cloudinary Golang package

Results 3 cloudinary-go issues
Sort by recently updated
recently updated
newest added

## Describe the bug in a sentence or two. uploader.UploadParams is missing the optional `AccessControl` field that is present in the api documentation [Api Link](https://cloudinary.com/documentation/image_upload_api_reference#upload_optional_parameters) ## Issue Type (Can be...

` func uploadImageToCloudinary(base64str, name string) (*uploader.UploadResult, error) { cloudinaryURL := os.Getenv("CLOUDINARY_URL") cloudinaryClient, err := cloudinary.NewFromURL(cloudinaryURL) if err != nil { return nil, err } formattedString := fmt.Sprintf("data:image/jpeg;base64,%s", base64str) uploadParams :=...

## Explain your use case All the errors from SDK now returns in raw format. Moreover - they are bubbling up from the very bottom level to the client level....