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) Get Individual Photo InfoAssuming we have the ID of a Photo, this example demonstrates how to retrieve the photo information and parse the JSON.
#include <C_CkOAuth2.h> #include <C_CkRest.h> #include <C_CkStringBuilder.h> #include <C_CkJsonObject.h> void ChilkatSample(void) { HCkOAuth2 oauth2; HCkRest rest; BOOL success; const char *photoId; HCkStringBuilder sbPath; const char *responseJson; HCkJsonObject json; BOOL canDelete; int height; int width; // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // This example assumes a previously obtained an access token oauth2 = CkOAuth2_Create(); CkOAuth2_putAccessToken(oauth2,"FACEBOOK-ACCESS-TOKEN"); rest = CkRest_Create(); // Connect to Facebook... success = CkRest_Connect(rest,"graph.facebook.com",443,TRUE,TRUE); if (success != TRUE) { printf("%s\n",CkRest_lastErrorText(rest)); CkOAuth2_Dispose(oauth2); CkRest_Dispose(rest); return; } // Provide the authentication credentials (i.e. the access key) CkRest_SetAuthOAuth2(rest,oauth2); // Assumes we've already obtained a Photo ID. photoId = "10210199026347451"; sbPath = CkStringBuilder_Create(); CkStringBuilder_Append(sbPath,"/v2.7/"); CkStringBuilder_Append(sbPath,photoId); // Select the fields we want. // This example will select many of the possible fields. // See https://developers.facebook.com/docs/graph-api/reference/photo/ CkRest_AddQueryParam(rest,"fields","id,album,can_delete,can_tag,from,height,width,images,link,name,name_tags,picture,place,target"); responseJson = CkRest_fullRequestNoBody(rest,"GET",CkStringBuilder_getAsString(sbPath)); if (CkRest_getLastMethodSuccess(rest) != TRUE) { printf("%s\n",CkRest_lastErrorText(rest)); CkOAuth2_Dispose(oauth2); CkRest_Dispose(rest); CkStringBuilder_Dispose(sbPath); return; } json = CkJsonObject_Create(); CkJsonObject_putEmitCompact(json,FALSE); CkJsonObject_Load(json,responseJson); // Show the JSON in human-readable format. printf("%s\n",CkJsonObject_emit(json)); // A sample response is shown below. // Demonstrate how to parse values from the JSON. printf("Album name: %s\n",CkJsonObject_stringOf(json,"album.name")); canDelete = CkJsonObject_BoolOf(json,"can_delete"); printf("Can Delete: %d\n",canDelete); printf("From Name: %s\n",CkJsonObject_stringOf(json,"from.name")); height = CkJsonObject_IntOf(json,"height"); width = CkJsonObject_IntOf(json,"width"); printf("Dimensions: %dx%d\n",width,height); printf("First Image Source: %s\n",CkJsonObject_stringOf(json,"images[0].source")); // A sample JSON response is shown here. // { // "id": "10210199026347451", // "album": { // "created_time": "2009-10-19T00:06:46+0000", // "name": "Timeline Photos", // "id": "1237223526054" // }, // "can_delete": true, // "can_tag": true, // "from": { // "name": "Matt Smith", // "id": "10224048320139890" // }, // "height": 120, // "width": 120, // "images": [ // { // "height": 120, // "source": "https:\/\/scontent.xx.fbcdn.net\/v\/t1.0-9\/14462791_10210199026347451_7830642117574407060_n.jpg?oh=a7f9ed10cf9cd81a82adeb541c60e2e2&oe=58ABB195", // "width": 120 // } // ], // "link": "https:\/\/www.facebook.com\/photo.php?fbid=10210199026347451&set=a.1237223526054.2038240.1093202869&type=3", // "name": "Ignore my posts -- I'm doing some testing for Facebook related programming...", // "picture": "https:\/\/scontent.xx.fbcdn.net\/v\/t1.0-9\/14462791_10210199026347451_7830642117574407060_n.jpg?oh=a7f9ed10cf9cd81a82adeb541c60e2e2&oe=58ABB195" // } // CkOAuth2_Dispose(oauth2); CkRest_Dispose(rest); CkStringBuilder_Dispose(sbPath); CkJsonObject_Dispose(json); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.