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
(Lianja) Generate OAuth 1.0 SignatureDemonstrates how to generate an OAuth 1.0 signature.
loOauth = createobject("CkOAuth1") // All Chilkat classes can be unlocked at once at the beginning of a program // by calling UnlockBundle. It requires a Bundle unlock code. loChilkatGlob = createobject("CkGlobal") llSuccess = loChilkatGlob.UnlockBundle("Anything for 30-day trial.") if (llSuccess <> .T.) then ? loChilkatGlob.LastErrorText release loOauth release loChilkatGlob return endif // Set input parameters: loOauth.OauthVersion = "1.0" loOauth.OauthMethod = "GET" loOauth.OauthUrl = "http://echo.lab.madgex.com/echo.ashx" loOauth.ConsumerKey = "key" loOauth.ConsumerSecret = "secret" loOauth.Token = "accesskey" loOauth.TokenSecret = "accesssecret" loOauth.Nonce = "01020304050607080102030405060708" loOauth.Timestamp = "1441659763" // Can be "HMAC-SHA1", "HMAC-SHA256", "RSA-SHA1", or "RSA-SHA2" loOauth.SignatureMethod = "HMAC-SHA256" llSuccess = loOauth.Generate() if (llSuccess <> .T.) then ? loOauth.LastErrorText release loOauth release loChilkatGlob return endif // Examine the various outputs: ? loOauth.QueryString ? loOauth.BaseString ? loOauth.HmacKey ? loOauth.Signature ? loOauth.EncodedSignature ? loOauth.AuthorizationHeader ? loOauth.GeneratedUrl release loOauth release loChilkatGlob |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.