|  | 
Chilkat  HOME  Android™  AutoIt  C  C#  C++  Chilkat2-Python  CkPython  Classic ASP  DataFlex  Delphi DLL  Go  Java  Node.js  Objective-C  PHP Extension  Perl  PowerBuilder  PowerShell  PureBasic  Ruby  SQL Server  Swift  Tcl  Unicode C  Unicode C++  VB.NET  VBScript  Visual Basic 6.0  Visual FoxPro  Xojo Plugin
| (Go) MedTunnel: LogoutSee more MedTunnel ExamplesClose the session for the logged in User.For more information, see https://server.medtunnel.com/apidocs/html/M_MedTunnelSvc_Controllers_AuthenticateController_Logout.htm 
 // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. http := chilkat.NewHttp() var success bool // Implements the following CURL command: // curl -X GET -k // -H "Authorization:PutAuthorizationTokenHere" // https://server.medtunnel.com/MedTunnelSvc/api/Authenticate/Logout // Use the following online tool to generate HTTP code from a CURL command // Convert a cURL Command to HTTP Source Code http.SetRequestHeader("Authorization","PutAuthorizationTokenHere") sbResponseBody := chilkat.NewStringBuilder() success = http.QuickGetSb("https://server.medtunnel.com/MedTunnelSvc/api/Authenticate/Logout",sbResponseBody) if success == false { fmt.Println(http.LastErrorText()) http.DisposeHttp() sbResponseBody.DisposeStringBuilder() return } jResp := chilkat.NewJsonObject() jResp.LoadSb(sbResponseBody) jResp.SetEmitCompact(false) fmt.Println("Response Body:") fmt.Println(*jResp.Emit()) respStatusCode := http.LastStatus() fmt.Println("Response Status Code = ", respStatusCode) if respStatusCode >= 400 { fmt.Println("Response Header:") fmt.Println(http.LastHeader()) fmt.Println("Failed.") http.DisposeHttp() sbResponseBody.DisposeStringBuilder() jResp.DisposeJsonObject() return } // Sample JSON response: // (Sample code for parsing the JSON response is shown below) // { // "ReturnCode": 1, // "ReturnCodeText": "Success", // "Data": "1" // } // Sample code for parsing the JSON response... // Use the following online tool to generate parsing code from sample JSON: // Generate Parsing Code from JSON ReturnCode := jResp.IntOf("ReturnCode") ReturnCodeText := jResp.StringOf("ReturnCodeText") Data := jResp.StringOf("Data") http.DisposeHttp() sbResponseBody.DisposeStringBuilder() jResp.DisposeJsonObject() | ||||
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.