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) Upload Media to TwitterDemonstrates uploading image or video files to Twitter. After uploading, the media_id can be used to attach the uploaded media to a tweet.
#include <CkJsonObject.h> #include <CkHttp.h> #include <CkHttpRequest.h> #include <CkFileAccess.h> #include <CkByteData.h> #include <CkHttpResponse.h> void ChilkatSample(void) { CkString strOut; // It requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // Assume we've previously obtained an access token and saved it to a JSON file.. CkJsonObject jsonToken; bool success = jsonToken.LoadFile("qa_data/tokens/twitter.json"); CkHttp http; // Provide the OAuth 1.0a credentials: http.put_OAuth1(true); http.put_OAuthConsumerKey("TWITTER_CONSUMER_KEY"); http.put_OAuthConsumerSecret("TWITTER_CONSUMER_SECRET"); http.put_OAuthToken(jsonToken.stringOf("oauth_token")); http.put_OAuthTokenSecret(jsonToken.stringOf("oauth_token_secret")); CkHttpRequest req; req.put_HttpVerb("POST"); req.put_ContentType("multipart/form-data"); req.put_Path("/1.1/media/upload.json"); req.AddHeader("Expect","100-continue"); // Add a JPEG image file to the upload. CkFileAccess fac; CkByteData jpgBytes; success = fac.ReadEntireFile("qa_data/jpg/starfish.jpg",jpgBytes); req.AddBytesForUpload("media","starfish.jpg",jpgBytes); CkHttpResponse *resp = http.SynchronousRequest("upload.twitter.com",443,true,req); if (http.get_LastMethodSuccess() != true) { strOut.append(http.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } CkJsonObject jsonResponse; jsonResponse.put_EmitCompact(false); jsonResponse.Load(resp->bodyStr()); if (resp->get_StatusCode() != 200) { strOut.append(jsonResponse.emit()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } delete resp; // Show the successful response: strOut.append(jsonResponse.emit()); strOut.append("\r\n"); strOut.append("Success."); strOut.append("\r\n"); // A successful JSON response looks like this: // { // "media_id": 793137045996646400, // "media_id_string": "793137045996646400", // "size": 6229, // "expires_after_secs": 86400, // "image": { // "image_type": "image\/jpeg", // "w": 120, // "h": 120 // } // } // // Get the information from the JSON: strOut.append("media_id_string = "); strOut.append(jsonResponse.stringOf("media_id_string")); strOut.append("\r\n"); strOut.append("size = "); strOut.appendInt(jsonResponse.IntOf("size")); strOut.append("\r\n"); strOut.append("image_type = "); strOut.append(jsonResponse.stringOf("image.image_type")); strOut.append("\r\n"); strOut.append("height/width = "); strOut.appendInt(jsonResponse.IntOf("image.w")); strOut.append(","); strOut.appendInt(jsonResponse.IntOf("image.h")); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); } |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.