![]() |
Chilkat HOME Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi DLL Go Java Node.js Objective-C PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(C#) Twitter PIN-Based Authorization (Step 2)Demonstrates the 2nd step in Twitter PIN-based authorization using OAuth. A PIN should have already been obtained from Step 1. The PIN is the OAuth verifier used in combination with the consumer secret and consumer key to get the access token and token secret that will be used for subsequent Twitter requests (to do whatever the Twitter account owner has permitted your application to do..) Note: The OAuth version 1 functionality demonstrated in this example is available in Chilkat v9.4.0 to be released approximately in mid-December 2012. Pre-releases are available upon request by sending email to support@chilkatsoft.com. (Please be sure to specify your programming language, operating system, framework, architecture, etc. to uniquely identify the build that is needed.)
// This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. Chilkat.Http http = new Chilkat.Http(); http.OAuth1 = true; http.OAuthConsumerKey = "my-consumer-key"; http.OAuthConsumerSecret = "my-consumer-secret"; http.OAuthVerifier = "the-PIN-obtained-from-Step1"; Chilkat.HttpRequest req = new Chilkat.HttpRequest(); Chilkat.HttpResponse resp = http.PostUrlEncoded("https://api.twitter.com/oauth/access_token",req); if (http.LastMethodSuccess == false) { Debug.WriteLine(http.LastErrorText); return; } if (resp.StatusCode == 200) { // Get the access token and secret: string oauthToken = resp.UrlEncParamValue(resp.BodyStr,"oauth_token"); Debug.WriteLine("Access token = " + oauthToken); string oauthTokenSecret = resp.UrlEncParamValue(resp.BodyStr,"oauth_token_secret"); Debug.WriteLine("Token secret = " + oauthTokenSecret); // Your application may now perform operations on the // Twitter account for whatever has been authorized. // To do so, prior to sending the HTTP request, // set the OAuthToken and OAuthTokenSecret // properties, and also make sure to clear OAuthVerifier property: http.OAuthToken = oauthToken; http.OAuthTokenSecret = oauthTokenSecret; http.OAuthVerifier = ""; // Now that the http object has valid property values // for OAuthConsumerKey, OAuthConsumerSecret, // OAuthToken, and OAuthTokenSecret, it can send authenticated // Twitter requests to the user's Twitter account. } else { Debug.WriteLine(http.LastErrorText); } |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.