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
(PureBasic) Get Current User InformationDemonstrates how to retrieve information about the current Facebook user. This is the most basic thing to get working first (after obtaining an access token).
IncludeFile "CkOAuth2.pb" IncludeFile "CkRest.pb" Procedure ChilkatExample() ; This example requires the Chilkat API to have been previously unlocked. ; See Global Unlock Sample for sample code. ; This example assumes we previously obtained an access token oauth2.i = CkOAuth2::ckCreate() If oauth2.i = 0 Debug "Failed to create object." ProcedureReturn EndIf CkOAuth2::setCkAccessToken(oauth2, "FACEBOOK-ACCESS-TOKEN") rest.i = CkRest::ckCreate() If rest.i = 0 Debug "Failed to create object." ProcedureReturn EndIf ; Connect to Facebook and send the following GET request: ; GET /v2.7/me HTTP/1.1 ; Host: graph.facebook.com bAutoReconnect.i = 1 success.i = CkRest::ckConnect(rest,"graph.facebook.com",443,1,bAutoReconnect) If success <> 1 Debug CkRest::ckLastErrorText(rest) CkOAuth2::ckDispose(oauth2) CkRest::ckDispose(rest) ProcedureReturn EndIf ; Provide the authentication credentials (i.e. the access key) CkRest::ckSetAuthOAuth2(rest,oauth2) responseJson.s = CkRest::ckFullRequestNoBody(rest,"GET","/v2.7/me") If CkRest::ckLastMethodSuccess(rest) <> 1 Debug CkRest::ckLastErrorText(rest) CkOAuth2::ckDispose(oauth2) CkRest::ckDispose(rest) ProcedureReturn EndIf Debug responseJson ; The responseJson looks like this: ; {"name":"John Doe","id":"10111011320111110"} CkOAuth2::ckDispose(oauth2) CkRest::ckDispose(rest) ProcedureReturn EndProcedure |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.