请问下
Auth接口服务 怎样调用,用下面方法调用好像获取不到数据,是不是用别的方法,谢谢
Integer li_rc
String ls_string
HttpClient lnv_HttpClient
lnv_HttpClient = Create HttpClient
////获取Token
// Sends request using GET method
li_rc = lnv_HttpClient.SendRequest("GET", "https://*****/Token")
// Obtains the response data
if li_rc = 1 and lnv_HttpClient.GetResponseStatusCode() = 200 then
lnv_HttpClient.GetResponseBody(ls_string)
end if
destroy lnv_HttpClient
messagebox('', ls_string)