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) Yousign Procedure Creation Basic Mode Upload FileDemonstrates the 1st step of Yousign procedure creation, which is to upload a PDF file. For more information, see https://dev.yousign.com/?version=latest#0889a9c5-aa1e-4de0-9b35-4d6621b4eb20
#include <C_CkHttp.h> #include <C_CkBinData.h> #include <C_CkJsonObject.h> #include <C_CkHttpResponse.h> #include <C_CkStringBuilder.h> void ChilkatSample(void) { HCkHttp http; BOOL success; HCkBinData pdfData; HCkJsonObject json; HCkHttpResponse resp; HCkStringBuilder sbResponseBody; HCkJsonObject jResp; int respStatusCode; const char *id; const char *name; const char *v_type; const char *contentType; const char *description; const char *createdAt; const char *updatedAt; const char *sha256; const char *workspace; const char *creator; BOOL v_protected; int position; const char *parent; int i; int count_i; // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. http = CkHttp_Create(); // Implements the following CURL command: // curl --location --request POST 'https://staging-api.yousign.com/files' \ // --header 'Authorization: Bearer YOUR_API_KEY' \ // --header 'Content-Type: application/json' \ // --data-raw '{ // "name": "The best name for my file.pdf", // "content": "JVBERi0..." }' // Load a PDF file to be uploaded. pdfData = CkBinData_Create(); success = CkBinData_LoadFile(pdfData,"qa_data/pdf/helloWorld.pdf"); if (success == FALSE) { printf("Failed to load PDF local file.\n"); CkHttp_Dispose(http); CkBinData_Dispose(pdfData); return; } // Use the following online tool to generate HTTP code from a CURL command // Convert a cURL Command to HTTP Source Code // Use this online tool to generate code from sample JSON: // Generate Code to Create JSON // The following JSON is sent in the request body. // { // "name": "The best name for my file.pdf", // "content": "JVBERi0..." // } json = CkJsonObject_Create(); CkJsonObject_UpdateString(json,"name","helloWorld.pdf"); CkJsonObject_UpdateString(json,"content",CkBinData_getEncoded(pdfData,"base64")); // Adds the "Authorization: Bearer YOUR_API_KEY" header. CkHttp_putAuthToken(http,"YOUR_API_KEY"); CkHttp_SetRequestHeader(http,"Content-Type","application/json"); resp = CkHttp_PostJson3(http,"https://staging-api.yousign.com/files","application/json",json); if (CkHttp_getLastMethodSuccess(http) == FALSE) { printf("%s\n",CkHttp_lastErrorText(http)); CkHttp_Dispose(http); CkBinData_Dispose(pdfData); CkJsonObject_Dispose(json); return; } sbResponseBody = CkStringBuilder_Create(); CkHttpResponse_GetBodySb(resp,sbResponseBody); jResp = CkJsonObject_Create(); CkJsonObject_LoadSb(jResp,sbResponseBody); CkJsonObject_putEmitCompact(jResp,FALSE); printf("Response Body:\n"); printf("%s\n",CkJsonObject_emit(jResp)); respStatusCode = CkHttpResponse_getStatusCode(resp); printf("Response Status Code = %d\n",respStatusCode); if (respStatusCode >= 400) { printf("Response Header:\n"); printf("%s\n",CkHttpResponse_header(resp)); printf("Failed.\n"); CkHttpResponse_Dispose(resp); CkHttp_Dispose(http); CkBinData_Dispose(pdfData); CkJsonObject_Dispose(json); CkStringBuilder_Dispose(sbResponseBody); CkJsonObject_Dispose(jResp); return; } CkHttpResponse_Dispose(resp); // Sample JSON response: // (Sample code for parsing the JSON response is shown below) // { // "id": "/files/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX", // "name": "The best name for my file.pdf", // "type": "signable", // "contentType": "application/pdf", // "description": null, // "createdAt": "2018-12-01T11:36:20+01:00", // "updatedAt": "2018-12-01T11:36:20+01:00", // "sha256": "bb57ae2b2ca6ad0133a699350d1a6f6c8cdfde3cf872cf526585d306e4675cc2", // "metadata": [ // ], // "workspace": "/workspaces/XXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX", // "creator": null, // "protected": false, // "position": 0, // "parent": null // } // Sample code for parsing the JSON response... // Use the following online tool to generate parsing code from sample JSON: // Generate Parsing Code from JSON // Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat. // See this example explaining how this memory should be used: const char * functions. id = CkJsonObject_stringOf(jResp,"id"); name = CkJsonObject_stringOf(jResp,"name"); v_type = CkJsonObject_stringOf(jResp,"type"); contentType = CkJsonObject_stringOf(jResp,"contentType"); description = CkJsonObject_stringOf(jResp,"description"); createdAt = CkJsonObject_stringOf(jResp,"createdAt"); updatedAt = CkJsonObject_stringOf(jResp,"updatedAt"); sha256 = CkJsonObject_stringOf(jResp,"sha256"); workspace = CkJsonObject_stringOf(jResp,"workspace"); creator = CkJsonObject_stringOf(jResp,"creator"); v_protected = CkJsonObject_BoolOf(jResp,"protected"); position = CkJsonObject_IntOf(jResp,"position"); parent = CkJsonObject_stringOf(jResp,"parent"); i = 0; count_i = CkJsonObject_SizeOfArray(jResp,"metadata"); while (i < count_i) { CkJsonObject_putI(jResp,i); i = i + 1; } CkHttp_Dispose(http); CkBinData_Dispose(pdfData); CkJsonObject_Dispose(json); CkStringBuilder_Dispose(sbResponseBody); CkJsonObject_Dispose(jResp); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.