透過go語言編寫百度翻譯API實現中南非文翻譯功能
引言:
隨著全球化的發展,人們對外語的需求越來越高,其中中南非文的重要性也逐漸凸顯。在這篇文章中,我將分享如何使用go語言編寫,結合百度翻譯API實作中南非文翻譯的功能。透過這個例子,您將了解如何在自己的應用程式中添加這樣的功能。
$ mkdir baidu_translation $ cd baidu_translation $ go mod init github.com/<your-username>/baidu_translation $ go get github.com/imroc/req
main.go
的文件,並將以下程式碼複製進去:package main import ( "encoding/json" "fmt" "github.com/imroc/req" "os" ) type BaiduTranslationResponse struct { Error int `json:"error"` ErrorCode string `json:"error_code,omitempty"` From string `json:"from"` To string `json:"to"` TransResult []Translation `json:"trans_result"` } type Translation struct { Src string `json:"src"` Dst string `json:"dst"` } func main() { translationText := "你好世界" appID := "<your-app-id>" secretKey := "<your-secret-key>" resp, err := req.Post("https://fanyi-api.baidu.com/api/trans/vip/translate", req.Param{ "q": translationText, "from": "zh", "to": "zu", "appid": appID, "salt": "1435660288", "sign": buildSign(translationText, appID, secretKey, "1435660288"), }, ) if err != nil { fmt.Println("请求错误:", err) os.Exit(1) } var translationResponse BaiduTranslationResponse err = resp.ToJSON(&translationResponse) if err != nil { fmt.Println("响应解析错误:", err) os.Exit(1) } if translationResponse.Error != 0 { fmt.Println("翻译错误:", translationResponse.ErrorCode) os.Exit(1) } translatedText := translationResponse.TransResult[0].Dst fmt.Println("翻译结果:", translatedText) } func buildSign(translationText, appID, secretKey, salt string) string { signStr := appID + translationText + salt + secretKey return fmt.Sprintf("%x", md5.Sum([]byte(signStr))) }
5d144fd43256843c361ae21106689c6c
和56dc264c8a546607c83b35ff5b92bd5e
替換為你在百度翻譯API網站上申請的存取金鑰。 $ go run main.go
翻译结果: Sawubona Mhlaba這表示“你好世界”在中南非文的翻譯結果是「Sawubona Mhlaba」。 結論:
本文透過go語言寫了一個簡單的例子,示範如何使用百度翻譯API實作中南非文翻譯的功能。您可以根據這個例子自行擴展和優化,以滿足個人化的需求。希望本文對您理解如何使用go語言和百度翻譯API實作中南非文翻譯功能有所幫助。
以上是透過go語言編寫百度翻譯API實作中南非文翻譯功能的詳細內容。更多資訊請關注PHP中文網其他相關文章!