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
(DataFlex) Moody's REST API - Get OAuth2 TokenSee more Moody's ExamplesDemonstrates how to get an OAuth2 access token for the Moody's REST API.
Use ChilkatAx-win32.pkg Procedure Test Handle hoHttp Variant vReq Handle hoReq Variant vResp Handle hoResp String sResponseBody Handle hoFac Boolean iSuccess String sTemp1 Integer iTemp1 Boolean bTemp1 // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. Get Create (RefClass(cComChilkatHttp)) To hoHttp If (Not(IsComObjectCreated(hoHttp))) Begin Send CreateComObject of hoHttp End Get Create (RefClass(cComChilkatHttpRequest)) To hoReq If (Not(IsComObjectCreated(hoReq))) Begin Send CreateComObject of hoReq End Send ComAddParam To hoReq "grant_type" "password" Send ComAddParam To hoReq "scope" "api/ratings api/addin rest" Send ComAddParam To hoReq "username" "my_username" Send ComAddParam To hoReq "password" "my_password" // I have no idea of where to get the client_id or client_secret. // When you create a Moody's App, it only provides an "API Key". Send ComAddParam To hoReq "client_id" "my_client_id" Send ComAddParam To hoReq "client_secret" "my_client_secret" Get pvComObject of hoReq to vReq Get ComPostUrlEncoded Of hoHttp "https://api.moodys.com/OAuth/Token" vReq To vResp If (IsComObject(vResp)) Begin Get Create (RefClass(cComChilkatHttpResponse)) To hoResp Set pvComObject Of hoResp To vResp End Get ComLastMethodSuccess Of hoHttp To bTemp1 If (bTemp1 <> True) Begin Get ComLastErrorText Of hoHttp To sTemp1 Showln sTemp1 Procedure_Return End Get ComStatusCode Of hoResp To iTemp1 Showln "status code = " iTemp1 Get ComBodyStr Of hoResp To sResponseBody Showln sResponseBody // Save the JSON to a file for future requests. Get ComStatusCode Of hoResp To iTemp1 If (iTemp1 = 200) Begin Get Create (RefClass(cComCkFileAccess)) To hoFac If (Not(IsComObjectCreated(hoFac))) Begin Send CreateComObject of hoFac End Get ComBodyStr Of hoResp To sTemp1 Get ComWriteEntireTextFile Of hoFac "qa_data/tokens/moodys.json" sTemp1 "utf-8" False To iSuccess End Send Destroy of hoResp End_Procedure |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.