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
(Unicode C) Upload a Blob using a Container’s Shared Access SignatureSee more Azure Cloud Storage ExamplesShows how to upload an Azure blob using a URL with a shared access signature. For more information, see https://learn.microsoft.com/en-us/rest/api/storageservices/service-sas-examples#example-upload-a-blob-using-a-containers-shared-access-signature
#include <C_CkHttpW.h> #include <C_CkHttpResponseW.h> void ChilkatSample(void) { const wchar_t *url; HCkHttpW http; HCkHttpResponseW resp; int statusCode; const wchar_t *url2; // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // To upload a file we're simply sending a PUT with the content of the data. For example: // PUT https://myaccount.blob.core.windows.net/pictures/photo.jpg?sv=2015-02-21&st=2015-07-01T08%3a49Z&se=2015-07-02T08%3a49Z& sr=c&sp=w&si=YWJjZGVmZw%3d%3d&sig=Rcp6gQRfV7WDlURdVTqCa%2bqEArnfJxDgE%2bKH3TCChIs%3d HTTP/1.1 // Host: myaccount.blob.core.windows.net // // Content-Length: 12 // // Hello World. // Upload a string to a helloWorld.txt file in the "mycontainer" container, in the "chilkat" account. url = L"https://chilkat.blob.core.windows.net/mycontainer/helloWorld.txt?sv=2021-06-08&ss=bfqt&srt=sco&sp=rwdlacupiyx&se=2023-02-12T21:30:53Z&st=2023-02-12T13:30:53Z&spr=https&sig=HB8CoZiD7EJD1rQNIVnLl%2Bq7kyLcOCnSXR14TadBv6s%3D"; http = CkHttpW_Create(); CkHttpW_SetRequestHeader(http,L"x-ms-blob-type",L"BlockBlob"); resp = CkHttpW_PText(http,L"PUT",url,L"Hello World.",L"utf-8",L"text/plain",FALSE,FALSE); if (CkHttpW_getLastMethodSuccess(http) == FALSE) { wprintf(L"%s\n",CkHttpW_lastErrorText(http)); CkHttpW_Dispose(http); return; } statusCode = CkHttpResponseW_getStatusCode(resp); wprintf(L"response status code: %d\n",statusCode); wprintf(L"response status text: %s\n",CkHttpResponseW_statusText(resp)); CkHttpResponseW_Dispose(resp); if (statusCode == 201) { wprintf(L"Success.\n"); } else { wprintf(L"Failed.\n"); } // ------------------------------------------------------------------------------------------------- // Upload from a file... // Upload a binar file to a penguins.jpg file in the "mycontainer" container, in the "chilkat" account. url2 = L"https://chilkat.blob.core.windows.net/mycontainer/penguins.jpg?sv=2021-06-08&ss=bfqt&srt=sco&sp=rwdlacupiyx&se=2023-02-12T21:30:53Z&st=2023-02-12T13:30:53Z&spr=https&sig=HB8CoZiD7EJD1rQNIVnLl%2Bq7kyLcOCnSXR14TadBv6s%3D"; CkHttpW_ClearHeaders(http); CkHttpW_SetRequestHeader(http,L"x-ms-blob-type",L"BlockBlob"); // Upload a JPG file resp = CkHttpW_PFile(http,L"PUT",url2,L"c:/qa_data/jpg/penguins.jpg",L"image/jpeg",FALSE,FALSE); if (CkHttpW_getLastMethodSuccess(http) == FALSE) { wprintf(L"%s\n",CkHttpW_lastErrorText(http)); CkHttpW_Dispose(http); return; } statusCode = CkHttpResponseW_getStatusCode(resp); wprintf(L"response status code: %d\n",statusCode); wprintf(L"response status text: %s\n",CkHttpResponseW_statusText(resp)); CkHttpResponseW_Dispose(resp); if (statusCode == 201) { wprintf(L"Success.\n"); } else { wprintf(L"Failed.\n"); } CkHttpW_Dispose(http); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.