阅读本文,您可以获取 Go SDK AIGC 商品图的接口调用示例,实现快速开发。
说明
本文的调用示例包含接口的部分参数。由于参数间可能存在互斥关系,在调用时,请您参考注释,进行调整。
调用接口前,请先完成 Go SDK 的安装及初始化操作。
本节为您介绍 AIGC 商品图相关接口的功能和调用示例。
您可以调用 GetProductAIGCResult 接口使用 AIGC 获取商品卖点图。详细的参数说明可参见 GetProductAIGCResult 接口文档。
接口调用示例如下所示。
package imagex_test import ( "context" "encoding/json" "fmt" "testing" "github.com/volcengine/volc-sdk-golang/base" imagex "github.com/volcengine/volc-sdk-golang/service/imagex/v2" ) func Test_GetProductAIGCResult(t *testing.T) { instance := imagex.NewInstance() instance.SetCredential(base.Credentials{ AccessKeyID: "ak", SecretAccessKey: "sk", }) param := &imagex.GetProductAIGCResultReq{ GetProductAIGCResultQuery: &imagex.GetProductAIGCResultQuery{}, GetProductAIGCResultBody: &imagex.GetProductAIGCResultBody{}, } resp, err := instance.GetProductAIGCResult(context.Background(), param) if err != nil { fmt.Printf("error %v", err) } else { t, _ := json.Marshal(resp) fmt.Printf("success %v", string(t)) } }