diff --git a/README.md b/README.md index b9c3658..e197882 100644 --- a/README.md +++ b/README.md @@ -25,52 +25,7 @@ 9. tencentSecretId = "your id",tencentSecretKey = "your secret" 10. key存储在.env文件中,使用dotenv库进行加载。 -11. go的示例代码如下: - -```go -package main - -import ( - "fmt" - - "github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common" - "github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common/errors" - "github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common/profile" - ocr "github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/ocr/v20181119" -) - -func main() { - // 实例化一个认证对象,入参需要传入腾讯云账户 SecretId 和 SecretKey,此处还需注意密钥对的保密 - // 代码泄露可能会导致 SecretId 和 SecretKey 泄露,并威胁账号下所有资源的安全性。以下代码示例仅供参考,建议采用更安全的方式来使用密钥,请参见:https://cloud.tencent.com/document/product/1278/85305 - // 密钥可前往官网控制台 https://console.cloud.tencent.com/cam/capi 进行获取 - credential := common.NewCredential( - "SecretId", - "SecretKey", - ) - // 实例化一个client选项,可选的,没有特殊需求可以跳过 - cpf := profile.NewClientProfile() - cpf.HttpProfile.Endpoint = "ocr.tencentcloudapi.com" - // 实例化要请求产品的client对象,clientProfile是可选的 - client, _ := ocr.NewClient(credential, "", cpf) - - // 实例化一个请求对象,每个接口都会对应一个request对象 - request := ocr.NewGeneralHandwritingOCRRequest() - - rrequest.ImageBase64 = common.StringPtr("/9j/4AAQSkZJRg.....s97n//2Q==") - request.Scene = common.StringPtr("only_hw") - - // 返回的resp是一个GeneralHandwritingOCRResponse的实例,与请求对象对应 - response, err := client.GeneralHandwritingOCR(request) - if _, ok := err.(*errors.TencentCloudSDKError); ok { - fmt.Printf("An API error has returned: %s", err) - return - } - if err != nil { - panic(err) - } - // 输出json格式的字符串回包 - fmt.Printf("%s", response.ToJsonString()) -} +11. 增加rate功能,批改作文 ``` 项目结构 ``` @@ -85,5 +40,5 @@ your-project/ │ └── config.go └── handler/ └── ocr.go - + └── rate.go ``` \ No newline at end of file