REST APIs & Go Cloud SDK for developers to convert images & documents among supported file formats.
开始免费试用The GroupDocs.Conversion Cloud SDK for Go has been developed to help you get started with our document conversion REST API, which lets you seamlessly convert your documents to any format you need. With this single API, you can convert back and forth between over 50 types of documents and images, including all Microsoft Office and OpenDocument file formats, PDF documents, HTML, CAD, raster images and many more.
Check out GroupDocs.Conversion Cloud SDK for Go at GitHub if you are looking for the source code to convert file in the Cloud.
You can try GroupDocs.Conversion Low-Code Go APIs without any limitations.
GroupDocs.Conversion Cloud 也可用作 Docker 映像,可用于自托管 服务。或者,您可以使用目前驱动我们的 REST API 的 GroupDocs.Conversion 高代码 API 构建您自己的服务。
GroupDocs.Conversion REST API 能够对多种文档格式执行转换。 API支持的格式信息可以通过以下代码获取:
// Get your App SID and App Key at https://dashboard.groupdocs.cloud (free registration is required).
// For complete examples and data files, please go to https://github.com/groupdocs-conversion-cloud/groupdocs-conversion-cloud-go-samples
package info
import (
"fmt"
"github.com/antihax/optional"
conversion "github.com/groupdocs-conversion-cloud/groupdocs-conversion-cloud-go"
"github.com/groupdocs-conversion-cloud/groupdocs-conversion-cloud-go-samples/config"
)
func GetSupportedConversions() {
opts := &conversion.InfoApiGetSupportedConversionTypesOpts{
Format: optional.NewString("docx"),
}
response, _, err := config.Client.InfoApi.GetSupportedConversionTypes(config.Ctx, opts)
if err != nil {
fmt.Printf("GetSupportedConversions error: %v\n", err)
return
}
fmt.Printf("response.length: %v\n", len(response))
}
GroupDocs.Conversion Cloud API 完全独立于您的操作系统、数据库系统或开发语言。您可以使用任何支持 HTTP 的语言和平台与我们的 API 进行交互。但是,手动编写客户端代码可能很困难、容易出错且耗时。因此,我们提供并支持多种开发语言的 API SDK,以便于与我们集成。如果您使用 SDK,它会隐藏 REST API 调用,并允许您以本机方式使用 GroupDocs.Conversion Cloud API 功能,用于您的首选语言。
GroupDocs.Conversion Cloud API 是安全的,需要身份验证。用户需要在 GroupDocs Cloud 注册并获取他们的应用访问密钥 ID (appSID) 和应用秘密访问密钥。经过身份验证的请求需要签名和 AppSID 查询参数或 OAuth 2.0 授权标头。
GroupDocs.Conversion Cloud SDK 经过 100% 测试并且开箱即用。 SDK 是开源的,拥有 MIT 许可证。您可以使用它,甚至完全免费地对其进行定制。