I'd like to send http request to api.cognitive.microsofttranslator.com/translate
and send some text to translate, but it does not work.
I try with this request:
Public Sub translate()
Dim strUrl As String
Dim params As String
Dim strResponseHeaders As String
Dim allResponseHeader As String
Dim strResponse As String
Dim body As String
Dim phrase As String: phrase = "some text to translate"
Dim target As String: target = "mk"
Dim some_key as string : some_key = "somekey"
dim location as string: location = "west..."
body = "[{""text"":""" & phrase & """}]"
strUrl = "https://api.cognitive.microsofttranslator.com/translate?api-version=3.0"
params = "&from=en&to=" & target
Dim hReq As Object
Set hReq = CreateObject("MSXML2.XMLHTTP")
With hReq
.Open "POST", strUrl & params, False
.setRequestHeader "Content-Type", "application/json"
.setRequestHeader "Content-Type", "charset=UTF-8"
.setRequestHeader "Ocp-Apim-Subscription-Key", some_key
.setRequestHeader "Ocp-Apim-Subscription-Region", location
.setRequestHeader "Content-Length", Len(body)
.send body
strResponseHeaders = .StatusText
strResponse = .responseText
allResponseHeader = .getAllResponseHeaders
'translate = hReq.ResponseText
End With
End Sub
I get an error at .send body
== the parameter is not correct
I tried with curl request from batch file. If I run from cmd it works fine :
set "traceId=%random%%random%%random%"
set "endpoint=https://api.cognitive.microsofttranslator.com/translate?api-version=3.0&from=en&to=mk"
set "requestData=[{""text"":""the price is""}]"
curl --location "%endpoint%" ^
--header "Ocp-Apim-Subscription-Key: %key%" ^
--header "Ocp-Apim-Subscription-Region: %region%" ^
--header "X-ClientTraceId: %traceId%" ^
--header "Content-Type: application/json" ^
--header "Content-Type: charset=UTF-8" ^
--data "%requestData%"
You can use the below code to use the
HTTP
request to Azure translator fromvba
in MS Access.Code:
The above code is used to translate text from one language to another using Azure cognitive service. It constructs an
HTTP
request to the Translator API endpoint with the appropriate headers and request body and parses the response to extract the translated text.Also, you need to use the
Newtonsoft.Json
library toserialize
anddeserialize
JSON data.Output:
Reference:
Translator Translate Method - Azure AI services | Microsoft Learn