Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(C) HTTP Authentication (Basic, NTLM, Digest, Negotiate)Demonstrates how to use HTTP authentication. Authentication can be added to any method that sends an HTTP request to the server, such as SynchronousRequest, QuickGetStr, PostXml, etc. To add authentication, simply set the Login and Password properties. By default, Chilkat will use basic HTTP authentication, which sends the login/password clear-text over the connection. This is bad if SSL/TLS (i.e. HTTPS) is not used. However, if the connection is secure, there should be nothing wrong with using basic authentication. Chilkat supports more secure authentication types as well, including Digest, NTLM, and Negotiate. To use Digest authentication, simply set the DigestAuth property = TRUE. To use NTLM authentication, set the NtlmAuth property = TRUE. Likewise, to use Negotiate authentication, set the NegotiateAuth property = TRUE. Important: Negotiate authentication is only supported for the Chilkat implementations that run on the Windows platform. This is because it is implemented internally using Microsoft's SSPI API. NTLM authentication however, is available for all supported operating systems because Chilkat implements NTLM directlly (i.e. does not use Microsoft SSPI for the underlying implementation.)
#include <C_CkHttp.h> void ChilkatSample(void) { HCkHttp http; const char *html; HCkHttp http2; HCkHttp http3; // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. http = CkHttp_Create(); // Set the Login and Password properties for authentication. CkHttp_putLogin(http,"chilkat"); CkHttp_putPassword(http,"myPassword"); // To use HTTP Basic authentication.. CkHttp_putBasicAuth(http,TRUE); html = CkHttp_quickGetStr(http,"http://localhost/xyz.html"); if (CkHttp_getLastMethodSuccess(http) != TRUE) { printf("%s\n",CkHttp_lastErrorText(http)); CkHttp_Dispose(http); return; } // Examine the HTTP status code returned. // A status code of 401 is typically returned for "access denied" // if no login/password is provided, or if the credentials (login/password) // are incorrect. printf("HTTP status code for Basic authentication: %d\n",CkHttp_getLastStatus(http)); // Examine the HTML returned for the URL: printf("%s\n",html); http2 = CkHttp_Create(); // To use NTLM authentication, set the // NtlmAuth property = TRUE CkHttp_putNtlmAuth(http2,TRUE); // The session log can be captured to a file by // setting the SessionLogFilename property: CkHttp_putSessionLogFilename(http2,"ntlmAuthLog.txt"); // Examination of the HTTP session log will show the NTLM // back-and-forth exchange between the client and server. // This call will now use NTLM authentication (assuming it // is supported by the web server). html = CkHttp_quickGetStr(http2,"http://localhost/xyz.html"); // Note: if (CkHttp_getLastMethodSuccess(http2) != TRUE) { printf("%s\n",CkHttp_lastErrorText(http2)); CkHttp_Dispose(http); CkHttp_Dispose(http2); return; } printf("HTTP status code for NTLM authentication: %d\n",CkHttp_getLastStatus(http2)); http3 = CkHttp_Create(); // To use Digest Authentication, set the DigestAuth property = TRUE // Also, no more than one of the authentication type properties // (NtlmAuth, DigestAuth, and NegotiateAuth) should be set // to TRUE. CkHttp_putDigestAuth(http3,TRUE); CkHttp_putSessionLogFilename(http3,"digestAuthLog.txt"); // This call will now use Digest authentication (assuming it // is supported by the web server). html = CkHttp_quickGetStr(http3,"http://localhost/xyz.html"); if (CkHttp_getLastMethodSuccess(http3) != TRUE) { printf("%s\n",CkHttp_lastErrorText(http3)); CkHttp_Dispose(http); CkHttp_Dispose(http2); CkHttp_Dispose(http3); return; } printf("HTTP status code for Digest authentication: %d\n",CkHttp_getLastStatus(http3)); CkHttp_Dispose(http); CkHttp_Dispose(http2); CkHttp_Dispose(http3); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.