贝斯特游戏大厅官网入口

快速启动

最新更新日期:Oct-31-2023

快速启动是为了快速尝试使用数个常见云性特征不一定使用编码最佳实践 和代码你在这里创建

快速启动代码沙盒或干净工程

可同时使用视图完成代码快速启动Github和代码探索器

小技巧
如果你不熟悉云形,你可能想先看一看 开发者启动指南高层次概述云化编码并介绍主要概念

你也可以发现我们词汇表帮助理解云专用术语

预设条件

快速启动需要:

开工搭建并配置SDK

创建 go.mod文件目录保存

Go
go mod init my_folder

Go环境终端运行下列代码:

Go
go get github.com/cloudinary/cloudinary-go/v2

内端设置CLOUDIORY_URL环境变量

替换CLOUDINARY_URL=cloudinary://API_KEY:API_SECRET@CLOUD_NAME并发API环境变量从产品环境证书复制

  • Mac或Linux

    export CLOUDINARY_URL=cloudinary://API_KEY:API_SECRET@CLOUD_NAME
  • Windows上:

    set CLOUDINARY_URL=cloudinary://API_KEY:API_SECRET@CLOUD_NAME

重要点
  • 写自己的应用程序时,遵守贵组织保存机密的政策,不泄露API秘密
  • 使用方法将环境变量写入文件多腾夫)文件应排除在版本控制系统之外,以免公开披露文件

在您的项目中创建新文件调用my_file.go.复制并粘贴以下文件:

my_file.go
Go
package main

// Import Cloudinary and other necessary libraries
//===================
import (
    "context"
    "fmt"
    "github.com/cloudinary/cloudinary-go/v2"
    "github.com/cloudinary/cloudinary-go/v2/api"
    "github.com/cloudinary/cloudinary-go/v2/api/admin"
    "github.com/cloudinary/cloudinary-go/v2/api/uploader"
)

func credentials() (*cloudinary.Cloudinary, context.Context) {
    // Add your Cloudinary credentials, set configuration parameter 
    // Secure=true to return "https" URLs, and create a context
    //===================
    cld, _ := cloudinary.New()
    cld.Config.URL.Secure = true
    ctx := context.Background()
    return cld, ctx
}

二叉上传图像

拷贝粘贴my_file.go:

my_file.go(续)
Go
func uploadImage(cld *cloudinary.Cloudinary, ctx context.Context) {

  // Upload the image.
  // Set the asset's public ID and allow overwriting the asset with new versions
    resp, err := cld.Upload.Upload(ctx, "https://cloudinary-devs.github.io/cld-docs-assets/assets/images/butterfly.jpeg", uploader.UploadParams{
        PublicID:       "quickstart_butterfly",
        UniqueFilename: api.Bool(false),
        Overwrite:      api.Bool(true)})
    if err != nil {
        fmt.Println("error")
    }

  // Log the delivery URL
    fmt.Println("****2. Upload an image****\nDelivery URL:", resp.SecureURL, "\n")
}

3级获取并使用图像细节

拷贝粘贴my_file.go:

my_file.go(续)
Go
func getAssetInfo(cld *cloudinary.Cloudinary, ctx context.Context) {
    // Get and use details of the image
    // ==============================
    resp, err := cld.Admin.Asset(ctx, admin.AssetParams{PublicID: "quickstart_butterfly"})
    if err != nil {
        fmt.Println("error")
    }
    fmt.Println("****3. Get and use details of the image****\nDetailed response:\n", resp, "\n")

    // Assign tags to the uploaded image based on its width. Save the response to the update in the variable 'update_resp'.
    if resp.Width > 900 {
        update_resp, err := cld.Admin.UpdateAsset(ctx, admin.UpdateAssetParams{
            PublicID: "quickstart_butterfly",
            Tags:     []string{"large"}})
        if err != nil {
            fmt.Println("error")
        } else {
            // Log the new tag to the console.
            fmt.Println("New tag: ", update_resp.Tags, "\n")
        }
    } else {
        update_resp, err := cld.Admin.UpdateAsset(ctx, admin.UpdateAssetParams{
            PublicID: "quickstart_butterfly",
            Tags:     []string{"small"}})
        if err != nil {
            fmt.Println("error")
        } else {
            // Log the new tag to the console.
            fmt.Println("New tag: ", update_resp.Tags, "\n")
        }
    }

}

4级变换图像

拷贝粘贴my_file.go:

my_file.go(续)
Go
func transformImage(cld *cloudinary.Cloudinary, ctx context.Context) {
    // Instantiate an object for the asset with public ID "my_image"
    qs_img, err := cld.Image("quickstart_butterfly")
    if err != nil {
        fmt.Println("error")
    }

    // Add the transformation
    qs_img.Transformation = "r_max/e_sepia"

    // Generate and log the delivery URL
    new_url, err := qs_img.String()
    if err != nil {
        fmt.Println("error")
    } else {
        print("****4. Transform the image****\nTransfrmation URL: ", new_url, "\n")
    }
}

5级运行代码

拷贝粘贴my_file.go:

my_file.go(续)
Go
func main() {
    cld, ctx := credentials()
    uploadImage(cld, ctx)
    getAssetInfo(cld, ctx)
    transformImage(cld, ctx)
}

终端运行下命令 :

go run my_file.go

下图原创上传到您的云内账号中,适当贴上标签并通过以下URL访问

变换版图像通过下文显示的URL访问

原创图像原创图像
http://res.www.aaaalireno.com/<cloud-name>/image/
upload/v1/quickstart_butterfly
变换图像变换图像
http://res.www.aaaalireno.com/<cloud-name>
/image/upload/e_sepia
r_max/v1/quickstart_butterfly

视图完成代码

上方代码使用此代码游乐场

注解
if to see输出
  • 点击重混合编辑.
  • 复制您的API环境变量传值即除等号后云化网 )
  • 贴进Glitch.env文件编译可变值ForCLOUDIORY_URL.
  • 点击日志记录底部屏幕

代码中也可用GitHub

下一步步骤

反馈发送