Chilkat Examples

ChilkatHOMEAndroid™Classic ASPCC++C#Mono C#.NET Core C#C# UWP/WinRTDataFlexDelphi ActiveXDelphi DLLVisual FoxProJavaLianjaMFCObjective-CPerlPHP ActiveXPHP ExtensionPowerBuilderPowerShellPureBasicCkPythonChilkat2-PythonRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++Visual Basic 6.0VB.NETVB.NET UWP/WinRTVBScriptXojo PluginNode.jsExcelGo

C# UWP/WinRT Web API Examples

Primary Categories

ABN AMRO
AWS Secrets Manager
AWS Translate
Activix CRM
Adyen
Alibaba Cloud OSS
Amazon Cognito
Amazon DynamoDB
Amazon MWS
Amazon Pay
Amazon Rekognition
Amazon Voice ID
Aruba Fatturazione
Azure Maps
Azure Monitor
Azure OAuth2
Azure Storage Accounts
Backblaze S3
Bitfinex v2 REST
Bluzone
BrickLink
CallRail
CardConnect
Cerved
ClickBank
Clickatell
Cloudfare
Constant Contact
DocuSign
Duo Auth MFA
ETrade
Ecwid
Egypt ITIDA
Etsy
Facebook
Faire
Frame.io
GeoOp
GetHarvest
Global Payments
Google People
Google Search Console
Hungary NAV Invoicing
IBM Text to Speech
Ibanity
IntakeQ
Jira
Lightspeed
MYOB
Magento
Mailgun
Mastercard

MedTunnel
MercadoLibre
Microsoft Calendar
Microsoft Group
Microsoft Tasks and Plans
Microsoft Teams
Moody's
Okta OAuth/OIDC
OneLogin OIDC
OneNote
PRODA
PayPal
Paynow.pl
Peoplevox
Populi
QuickBooks
Rabobank
Refinitiv
Royal Mail OBA
SCiS Schools Catalogue
SII Chile
SMSAPI
SOAP finkok.com
SendGrid
Shippo
Shopify
Shopware
Shopware 6
SimpleTexting
Square
Stripe
SugarCRM
TicketBAI
Trello
Twilio
Twitter
UniPin
VoiceBase
Vonage
Walmart
Walmart v3
Wasabi
WhatsApp
WiX
WooCommerce
WordPress
Xero
Yahoo Mail
Yousign
Zoom
_Miscellaneous_
eBay
effectconnect
hacienda.go.cr

 

 

 

(C# UWP/WinRT) Download Photo to a File

Assuming we have the ID of a Photo, this example demonstrates how to download the photo image data to a file.

Chilkat Universal Windows Platform (UWP) / WinRT Downloads

Chilkat for the Universal Windows Platform (UWP)

// 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
Chilkat.OAuth2 oauth2 = new Chilkat.OAuth2();
oauth2.AccessToken = "FACEBOOK-ACCESS-TOKEN";

Chilkat.Rest rest = new Chilkat.Rest();

// Connect to Facebook...
bool success = await rest.ConnectAsync("graph.facebook.com",443,true,true);
if (success != true) {
    Debug.WriteLine(rest.LastErrorText);
    return;
}

// Provide the authentication credentials (i.e. the access key)
rest.SetAuthOAuth2(oauth2);

// Assumes we've already obtained a Photo ID.
string photoId = "10210199026347451";

Chilkat.StringBuilder sbPath = new Chilkat.StringBuilder();
sbPath.Append("/v2.7/");
sbPath.Append(photoId);

// First we're going to get the photo informaton so we can get the URL of the image file data.
// Select the fields we want.
// See https://developers.facebook.com/docs/graph-api/reference/photo/
rest.AddQueryParam("fields","id,album,images");

string responseJson = await rest.FullRequestNoBodyAsync("GET",sbPath.GetAsString());
if (rest.LastMethodSuccess != true) {
    Debug.WriteLine(rest.LastErrorText);
    return;
}

Chilkat.JsonObject json = new Chilkat.JsonObject();
json.EmitCompact = false;
json.Load(responseJson);

// Show the JSON in human-readable format.
Debug.WriteLine(json.Emit());

// Get the image URL.
string imageUrl = json.StringOf("images[0].source");
Debug.WriteLine("Downloading from " + imageUrl);

Chilkat.StringBuilder sbImageUrl = new Chilkat.StringBuilder();
sbImageUrl.Append(imageUrl);

// Build the output local file path.
Chilkat.StringBuilder sbToPath = new Chilkat.StringBuilder();
sbToPath.Append("qa_output/fb");
sbToPath.Append(json.StringOf("id"));
bool bCaseSensitive = false;
if (sbImageUrl.Contains(".jpg",bCaseSensitive) == true) {
    sbToPath.Append(".jpg");
}
else {
    sbToPath.Append(".png");
}

Debug.WriteLine("Downloading to " + sbToPath.GetAsString());

// Download using Chilkat HTTP.
Chilkat.Http http = new Chilkat.Http();
success = await http.DownloadAsync(imageUrl,sbToPath.GetAsString());
if (success != true) {
    Debug.WriteLine(http.LastErrorText);
}
else {
    Debug.WriteLine("Downloaded.");
}


 

© 2000-2022 Chilkat Software, Inc. All Rights Reserved.