You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package aliyun
import (
openapi "github.com/alibabacloud-go/darabonba-openapi/v2/client"
dysmsapi20170525 "github.com/alibabacloud-go/dysmsapi-20170525/v4/client"
"github.com/alibabacloud-go/tea/tea"
)
// Description:
//
// 使用AK&SK初始化账号Client
//
// @return Client
//
// @throws Exception
func CreateClient ( accessKeyId * string , accessKeySecret * string ) ( _result * dysmsapi20170525 . Client , _err error ) {
// 工程代码泄露可能会导致 AccessKey 泄露,并威胁账号下所有资源的安全性。以下代码示例仅供参考。
// 建议使用更安全的 STS 方式, 更多鉴权访问方式请参见: https://help.aliyun.com/document_detail/378661.html。
config := & openapi . Config {
// 必填,请确保代码运行环境设置了环境变量 ALIBABA_CLOUD_ACCESS_KEY_ID。
AccessKeyId : accessKeyId ,
// 必填,请确保代码运行环境设置了环境变量 ALIBABA_CLOUD_ACCESS_KEY_SECRET。
AccessKeySecret : accessKeySecret ,
}
// Endpoint 请参考 https://api.aliyun.com/product/Dysmsapi
config . Endpoint = tea . String ( "dysmsapi.aliyuncs.com" )
_result = & dysmsapi20170525 . Client { }
_result , _err = dysmsapi20170525 . NewClient ( config )
return _result , _err
}