The Cloudinary Go SDK allows you to quickly and easily integrate your application with Cloudinary. Effortlessly optimize, transform, upload and manage your cloud's assets.
This Readme provides basic installation and usage information. For the complete documentation, see the Go SDK Guide.
- Transform assets.
- Asset Management.
- Secure URLs.
SDK Version | Go 1.13 to 1.19 | Go 1.20 | Go 1.21 |
---|---|---|---|
2.8 & up | ✘ | ✔ | ✔ |
2.7 | ✔ | ✔ | ✔ |
1.x | ✔ | ✔ | ✔ |
go get github.com/cloudinary/cloudinary-go/v2
import (
"github.com/cloudinary/cloudinary-go/v2"
)
cld, _ := cloudinary.New()
image, err := cld.Image("sample.jpg")
if err != nil {...}
image.Transformation = "c_fill,h_150,w_100"
imageURL, err := image.String()
resp, err := cld.Upload.Upload(ctx, "my_picture.jpg", uploader.UploadParams{})
Cloudinary SDK logs errors using standard go log
functions.
For details on redefining the logger or adjusting the logging level, see Logging.
See Complete SDK Example.
- Ensure tests run locally
- Open a PR and ensure Travis tests pass
- For more information on how to contribute, take a look at the contributing page.
If you run into an issue or have a question, you can either:
- Issues related to the SDK: Open a GitHub issue.
- Issues related to your account: Open a support ticket
Cloudinary is a powerful media API for websites and mobile apps alike, Cloudinary enables developers to efficiently manage, transform, optimize, and deliver images and videos through multiple CDNs. Ultimately, viewers enjoy responsive and personalized visual-media experiences—irrespective of the viewing device.
- Cloudinary Transformation and REST API References: Comprehensive references, including syntax and examples for all SDKs.
- MediaJams.dev: Bite-size use-case tutorials written by and for Cloudinary Developers
- DevJams: Cloudinary developer podcasts on YouTube.
- Cloudinary Academy: Free self-paced courses, instructor-led virtual courses, and on-site courses.
- Code Explorers and Feature Demos: A one-stop shop for all code explorers, Postman collections, and feature demos found in the docs.
- Cloudinary Roadmap: Your chance to follow, vote, or suggest what Cloudinary should develop next.
- Cloudinary Facebook Community: Learn from and offer help to other Cloudinary developers.
- Cloudinary Account Registration: Free Cloudinary account registration.
- Cloudinary Website: Learn about Cloudinary's products, partners, customers, pricing, and more.
Released under the MIT license.