3 Star 14 Fork 10

好人二狗/spark-wechat

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
spark.go 3.49 KB
一键复制 编辑 原始数据 按行查看 历史
好人二狗 提交于 2023-11-30 14:42 . 精简代码
package main
import (
"crypto/hmac"
"crypto/sha256"
"encoding/base64"
"fmt"
"github.com/joho/godotenv"
"log"
"net/url"
"os"
"strings"
"time"
)
/**
* WebAPI 接口调用示例 接口文档(必看):https://www.xfyun.cn/doc/spark/Web.html
* 错误码链接:https://www.xfyun.cn/doc/spark/%E6%8E%A5%E5%8F%A3%E8%AF%B4%E6%98%8E.html(code返回错误码时必看)
* @author iflytek
*/
/**
初始化配置文件
*/
func init() {
err := godotenv.Load()
if err != nil {
log.Fatal("Error loading .env file")
}
}
// 生成参数
func genParams(messages []Message) map[string]interface{} { // 根据实际情况修改返回的数据结构和字段名
data := map[string]interface{}{ // 根据实际情况修改返回的数据结构和字段名
"header": map[string]interface{}{ // 根据实际情况修改返回的数据结构和字段名
"app_id": os.Getenv("APPID"), // 根据实际情况修改返回的数据结构和字段名
},
"parameter": map[string]interface{}{ // 根据实际情况修改返回的数据结构和字段名
"chat": map[string]interface{}{ // 根据实际情况修改返回的数据结构和字段名
"domain": os.Getenv("SPARK_DOMAIN"), // 根据实际情况修改返回的数据结构和字段名
"temperature": float64(0.8), // 根据实际情况修改返回的数据结构和字段名
"top_k": int64(6), // 根据实际情况修改返回的数据结构和字段名
"max_tokens": int64(2048), // 根据实际情况修改返回的数据结构和字段名
"auditing": "default", // 根据实际情况修改返回的数据结构和字段名
},
},
"payload": map[string]interface{}{ // 根据实际情况修改返回的数据结构和字段名
"message": map[string]interface{}{ // 根据实际情况修改返回的数据结构和字段名
"text": messages, // 根据实际情况修改返回的数据结构和字段名
},
},
}
return data // 根据实际情况修改返回的数据结构和字段名
}
// 创建鉴权url apikey 即 hmac username
func assembleAuthUrl1() string {
hostUrl := os.Getenv("HOST_URL")
apiKey := os.Getenv("API_KEY")
apiSecret := os.Getenv("API_SECRET")
ul, err := url.Parse(hostUrl)
if err != nil {
fmt.Println(err)
}
//签名时间
date := time.Now().UTC().Format(time.RFC1123)
//date = "Tue, 28 May 2019 09:10:42 MST"
//参与签名的字段 host ,date, request-line
signString := []string{"host: " + ul.Host, "date: " + date, "GET " + ul.Path + " HTTP/1.1"}
//拼接签名字符串
sign := strings.Join(signString, "\n")
// fmt.Println(sign)
//签名结果
sha := HmacWithShaTobase64("hmac-sha256", sign, apiSecret)
// fmt.Println(sha)
//构建请求参数 此时不需要urlencoding
authUrl := fmt.Sprintf("hmac username=\"%s\", algorithm=\"%s\", headers=\"%s\", signature=\"%s\"", apiKey,
"hmac-sha256", "host date request-line", sha)
//将请求参数使用base64编码
authorization := base64.StdEncoding.EncodeToString([]byte(authUrl))
v := url.Values{}
v.Add("host", ul.Host)
v.Add("date", date)
v.Add("authorization", authorization)
//将编码后的字符串url encode后添加到url后面
return hostUrl + "?" + v.Encode()
}
func HmacWithShaTobase64(algorithm, data, key string) string {
mac := hmac.New(sha256.New, []byte(key))
mac.Write([]byte(data))
encodeData := mac.Sum(nil)
return base64.StdEncoding.EncodeToString(encodeData)
}
type Message struct {
Role string `json:"role"`
Content string `json:"content"`
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/haorenergou/spark-wechat.git
git@gitee.com:haorenergou/spark-wechat.git
haorenergou
spark-wechat
spark-wechat
master

搜索帮助