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
(Visual FoxPro) Bitfinex v2 REST User InfoRetrieve the user ID, email, username and timezone setting for the account associated with the API key used. For more information, see https://docs.bitfinex.com/reference#rest-auth-info-user
LOCAL loHttp LOCAL lnSuccess LOCAL loCrypt LOCAL lcApiPath LOCAL lcApiKey LOCAL lcApiSecret LOCAL loDt LOCAL loSbNonce LOCAL lcNonce LOCAL lcBody LOCAL loSbSignature LOCAL lcSig LOCAL loResp * This example assumes the Chilkat API to have been previously unlocked. * See Global Unlock Sample for sample code. * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Http') loHttp = CreateObject('Chilkat.Http') * Implements the following CURL command: * curl -X POST -H "bfx-nonce: nonce" \ * -H "bfx-apikey: apiKey" \ * -H "bfx-signature: sig" \ * https://api.bitfinex.com/v2/auth/r/info/user * Use the following online tool to generate HTTP code from a CURL command * Convert a cURL Command to HTTP Source Code * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Crypt2') loCrypt = CreateObject('Chilkat.Crypt2') lcApiPath = "v2/auth/r/info/user" lcApiKey = "MY_API_KEY" lcApiSecret = "MY_API_SECRET" * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.CkDateTime') loDt = CreateObject('Chilkat.CkDateTime') loDt.SetFromCurrentSystemTime() * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.StringBuilder') loSbNonce = CreateObject('Chilkat.StringBuilder') loSbNonce.Append(loDt.GetAsUnixTimeStr(0)) loSbNonce.Append("000") lcNonce = loSbNonce.GetAsString() * This particular request has an empty body. lcBody = "" * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.StringBuilder') loSbSignature = CreateObject('Chilkat.StringBuilder') loSbSignature.Append("/api/") loSbSignature.Append(lcApiPath) loSbSignature.Append(lcNonce) loSbSignature.Append(lcBody) loCrypt.EncodingMode = "hex_lower" loCrypt.HashAlgorithm = "sha384" loCrypt.MacAlgorithm = "hmac" loCrypt.SetMacKeyString(lcApiSecret) lcSig = loCrypt.MacStringENC(loSbSignature.GetAsString()) loHttp.SetRequestHeader("bfx-apikey",lcApiKey) loHttp.SetRequestHeader("bfx-signature",lcSig) loHttp.SetRequestHeader("bfx-nonce",lcNonce) loResp = loHttp.QuickRequest("POST","https://api.bitfinex.com/v2/auth/r/info/user") IF (loHttp.LastMethodSuccess = 0) THEN ? loHttp.LastErrorText RELEASE loHttp RELEASE loCrypt RELEASE loDt RELEASE loSbNonce RELEASE loSbSignature CANCEL ENDIF ? "Response body:" ? loResp.BodyStr * Sample response body: * [1234567,"joe@example.com","joe_trader",1527691729000,0,null,null,"Central Time (US & Canada)"] RELEASE loHttp RELEASE loCrypt RELEASE loDt RELEASE loSbNonce RELEASE loSbSignature |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.