Chilkat HOME Android™ Classic ASP C C++ C# Mono C# .NET Core C# C# UWP/WinRT DataFlex Delphi ActiveX Delphi DLL Visual FoxPro Java Lianja MFC Objective-C Perl PHP ActiveX PHP Extension PowerBuilder PowerShell PureBasic CkPython Chilkat2-Python Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ Visual Basic 6.0 VB.NET VB.NET UWP/WinRT VBScript Xojo Plugin Node.js Excel Go
(MFC) REST Upload Bandwidth ThrottleDemonstrates how to use upload bandwidth throttling with the REST API. This example will upload a file to Drobox using a file stream, with a limit on the bandwidth that can be used for the transfer.
#include <CkSocket.h> #include <CkRest.h> #include <CkJsonObject.h> #include <CkStream.h> #include <CkDateTime.h> #include <CkDtObj.h> void ChilkatSample(void) { CkString strOut; // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // A Dropbox access token should have been previously obtained. // Dropbox access tokens do not expire. // See Dropbox Access Token. // To use bandwidth throttling, the connection should be made using the socket API. // This provides numerous properties to customize the connection, such as // BandwidthThrottleDown, BandwidthThrottleUp, ClientIpAddress, ClintPort, Http Proxy, // KeepAlive, PreferIpv6, RequireSslCertVerify, SoRcvBuf, SoSndBuf, SoReuseAddr, // SOCKS proxy, TcpNoSDelay, TlsPinSet, TlsCipherSuite, SslAllowedCiphers, etc. CkSocket socket; int maxWaitMs = 5000; bool success = socket.Connect("content.dropboxapi.com",443,true,maxWaitMs); if (success != true) { strOut.append(socket.lastErrorText()); strOut.append("\r\n"); strOut.append("Connect Fail Reason: "); strOut.appendInt(socket.get_ConnectFailReason()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // Set the upload bandwidth throttle rate to 50000 bytes per second. socket.put_BandwidthThrottleUp(50000); CkRest rest; // Tell the REST object to use the connected socket. rest.UseConnection(socket,true); // The remainder of this example is identical to the example at: // Dropbox File Stream Upload. // Add request headers. rest.AddHeader("Content-Type","application/octet-stream"); rest.AddHeader("Authorization","Bearer DROPBOX_ACCESS_TOKEN"); // The upload "parameters" contained in JSON passed in an HTTP request header. // This is the JSON to be added in this example: // { // "path": "/Homework/lit/hamlet.xml", // "mode": "add", // "autorename": true, // "mute": false // } CkJsonObject json; json.AppendString("path","/Homework/lit/hamlet.xml"); json.AppendString("mode","add"); json.AppendBool("autorename",true); json.AppendBool("mute",false); rest.AddHeader("Dropbox-API-Arg",json.emit()); // Almost ready to go... // Let's setup a file stream to point to a file. CkStream fileStream; fileStream.put_SourceFile("qa_data/xml/hamlet.xml"); // Do the upload. The URL is https://content.dropboxapi.com/2/files/upload. // We already connected to content.dropboxapi.com using TLS (i.e. HTTPS), // so now we only need to specify the path "/2/files/upload". // Note: The file is streamed directly from disk. (The entire // file will not be loaded into memory.) const char *responseStr = rest.fullRequestStream("POST","/2/files/upload",fileStream); if (rest.get_LastMethodSuccess() != true) { strOut.append(rest.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // When successful, Dropbox responds with a 200 response code. if (rest.get_ResponseStatusCode() != 200) { // Examine the request/response to see what happened. strOut.append("response status code = "); strOut.appendInt(rest.get_ResponseStatusCode()); strOut.append("\r\n"); strOut.append("response status text = "); strOut.append(rest.responseStatusText()); strOut.append("\r\n"); strOut.append("response header: "); strOut.append(rest.responseHeader()); strOut.append("\r\n"); strOut.append("response body (if any): "); strOut.append(responseStr); strOut.append("\r\n"); strOut.append("---"); strOut.append("\r\n"); strOut.append("LastRequestStartLine: "); strOut.append(rest.lastRequestStartLine()); strOut.append("\r\n"); strOut.append("LastRequestHeader: "); strOut.append(rest.lastRequestHeader()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // The response is JSON. CkJsonObject jsonResp; jsonResp.put_EmitCompact(false); jsonResp.Load(responseStr); // Show the JSON response. strOut.append(jsonResp.emit()); strOut.append("\r\n"); // Returns JSON that looks like this: // { // "name": "hamlet.xml", // "path_lower": "/homework/lit/hamlet.xml", // "path_display": "/Homework/lit/hamlet.xml", // "id": "id:74FkdeNuyKAAAAAAAAAAAQ", // "client_modified": "2016-06-02T23:19:00Z", // "server_modified": "2016-06-02T23:19:00Z", // "rev": "9482db15f", // "size": 279658 // } // Sample code to get data from the JSON response: int size = jsonResp.IntOf("size"); strOut.append("size = "); strOut.appendInt(size); strOut.append("\r\n"); const char *rev = jsonResp.stringOf("rev"); strOut.append("rev = "); strOut.append(rev); strOut.append("\r\n"); const char *clientModified = jsonResp.stringOf("client_modified"); CkDateTime ckdt; ckdt.SetFromTimestamp(clientModified); bool bLocalTime = true; CkDtObj *dt = ckdt.GetDtObj(bLocalTime); strOut.appendInt(dt->get_Day()); strOut.append("/"); strOut.appendInt(dt->get_Month()); strOut.append("/"); strOut.appendInt(dt->get_Year()); strOut.append(" "); strOut.appendInt(dt->get_Hour()); strOut.append(":"); strOut.appendInt(dt->get_Minute()); strOut.append("\r\n"); delete dt; SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); } |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.