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
(AutoIt) Twitter OAuth1 Authorization (3-legged)Demonstrates 3-legged OAuth1 authorization for Twitter.
Local $sConsumerKey = "TWITTER_CONSUMER_KEY" Local $sConsumerSecret = "TWITTER_CONSUMER_SECRET" Local $sRequestTokenUrl = "https://api.twitter.com/oauth/request_token" Local $sAuthorizeUrl = "https://api.twitter.com/oauth/authorize" Local $sAccessTokenUrl = "https://api.twitter.com/oauth/access_token" ; The port number is picked at random. It's some unused port that won't likely conflict with anything else.. Local $sCallbackUrl = "http://localhost:3017/" Local $iCallbackLocalPort = 3017 ; The 1st step in 3-legged OAuth1.0a is to send a POST to the request token URL to obtain an OAuth Request Token $oHttp = ObjCreate("Chilkat.Http") Local $bSuccess $oHttp.OAuth1 = True $oHttp.OAuthConsumerKey = $sConsumerKey $oHttp.OAuthConsumerSecret = $sConsumerSecret $oReq = ObjCreate("Chilkat.HttpRequest") $oReq.AddParam "oauth_callback",$sCallbackUrl Local $oResp = $oHttp.PostUrlEncoded($sRequestTokenUrl,$oReq) If ($oHttp.LastMethodSuccess <> True) Then ConsoleWrite($oHttp.LastErrorText & @CRLF) Exit EndIf ; If successful, the resp.BodyStr contains something like this: ; oauth_token=-Wa_KwAAAAAAxfEPAAABV8Qar4Q&oauth_token_secret=OfHY4tZBX2HK4f7yIw76WYdvnl99MVGB&oauth_callback_confirmed=true ConsoleWrite($oResp.BodyStr & @CRLF) If ($oResp.StatusCode <> 200) Then ConsoleWrite("Failed response status code: " & $oResp.StatusCode & @CRLF) Exit EndIf $oHashTab = ObjCreate("Chilkat.Hashtable") $oHashTab.AddQueryParams($oResp.BodyStr) Local $sRequestToken = $oHashTab.LookupStr("oauth_token") Local $sRequestTokenSecret = $oHashTab.LookupStr("oauth_token_secret") $oHttp.OAuthTokenSecret = $sRequestTokenSecret ConsoleWrite("oauth_token = " & $sRequestToken & @CRLF) ConsoleWrite("oauth_token_secret = " & $sRequestTokenSecret & @CRLF) ; --------------------------------------------------------------------------- ; The next step is to form a URL to send to the authorizeUrl ; This is an HTTP GET that we load into a popup browser. $oSbUrlForBrowser = ObjCreate("Chilkat.StringBuilder") $oSbUrlForBrowser.Append($sAuthorizeUrl) $oSbUrlForBrowser.Append("?oauth_token=") $oSbUrlForBrowser.Append($sRequestToken) Local $sUrl = $oSbUrlForBrowser.GetAsString() ; At this point, your application should load the URL in a browser. ; For example, ; in C#: System.Diagnostics.Process.Start(url); ; in Java: Desktop.getDesktop().browse(new URI(url)); ; in VBScript: Set wsh=WScript.CreateObject("WScript.Shell") ; wsh.Run url ; in Xojo: ShowURL(url) (see http://docs.xojo.com/index.php/ShowURL) ; in Dataflex: Runprogram Background "c:\Program Files\Internet Explorer\iexplore.exe" sUrl ; The Microsoft account owner would interactively accept or deny the authorization request. ; Add the code to load the url in a web browser here... ; Add the code to load the url in a web browser here... ; Add the code to load the url in a web browser here... ; When the url is loaded into a browser, the response from Twitter will redirect back to localhost:3017 ; We'll need to start a socket that is listening on port 3017 for the callback from the browser. $oListenSock = ObjCreate("Chilkat.Socket") Local $iBackLog = 5 $bSuccess = $oListenSock.BindAndListen($iCallbackLocalPort,$iBackLog) If ($bSuccess <> True) Then ConsoleWrite($oListenSock.LastErrorText & @CRLF) Exit EndIf ; Wait for the browser's connection in a background thread. ; (We'll send load the URL into the browser following this..) ; Wait a max of 60 seconds before giving up. Local $iMaxWaitMs = 60000 Local $oTask = $oListenSock.AcceptNextConnectionAsync($iMaxWaitMs) $oTask.Run() ; At this point, your application should load the URL in a browser. ; For example, ; in C#: System.Diagnostics.Process.Start(url); ; in Java: Desktop.getDesktop().browse(new URI(url)); ; in VBScript: Set wsh=WScript.CreateObject("WScript.Shell") ; wsh.Run url ; in Xojo: ShowURL(url) (see http://docs.xojo.com/index.php/ShowURL) ; in Dataflex: Runprogram Background "c:\Program Files\Internet Explorer\iexplore.exe" sUrl ; The Twitter account owner would interactively accept or deny the authorization request. ; Add the code to load the url in a web browser here... ; Add the code to load the url in a web browser here... ; Add the code to load the url in a web browser here... ; System.Diagnostics.Process.Start(url); ; Wait for the listenSock's task to complete. $bSuccess = $oTask.Wait($iMaxWaitMs) If (Not $bSuccess Or ($oTask.StatusInt <> 7) Or ($oTask.TaskSuccess <> True)) Then If (Not $bSuccess) Then ; The task.LastErrorText applies to the Wait method call. ConsoleWrite($oTask.LastErrorText & @CRLF) Else ; The ResultErrorText applies to the underlying task method call (i.e. the AcceptNextConnection) ConsoleWrite($oTask.Status & @CRLF) ConsoleWrite($oTask.ResultErrorText & @CRLF) EndIf Exit EndIf ; If we get to this point, the connection from the browser arrived and was accepted. ; We no longer need the listen socket... ; Stop listening on port 3017. $oListenSock.Close(10) ; First get the connected socket. $oSock = ObjCreate("Chilkat.Socket") $oSock.LoadTaskResult($oTask) ; Read the start line of the request.. Local $startLine = $oSock.ReceiveUntilMatch(@CRLF) If ($oSock.LastMethodSuccess <> True) Then ConsoleWrite($oSock.LastErrorText & @CRLF) Exit EndIf ; Read the request header. Local $sRequestHeader = $oSock.ReceiveUntilMatch(@CRLF & @CRLF) If ($oSock.LastMethodSuccess <> True) Then ConsoleWrite($oSock.LastErrorText & @CRLF) Exit EndIf ; The browser SHOULD be sending us a GET request, and therefore there is no body to the request. ; Once the request header is received, we have all of it. ; We can now send our HTTP response. $oSbResponseHtml = ObjCreate("Chilkat.StringBuilder") $oSbResponseHtml.Append("<html><body><p>Chilkat thanks you!</b></body</html>") $oSbResponse = ObjCreate("Chilkat.StringBuilder") $oSbResponse.Append("HTTP/1.1 200 OK" & @CRLF) $oSbResponse.Append("Content-Length: ") $oSbResponse.AppendInt($oSbResponseHtml.Length) $oSbResponse.Append(@CRLF) $oSbResponse.Append("Content-Type: text/html" & @CRLF) $oSbResponse.Append(@CRLF) $oSbResponse.AppendSb($oSbResponseHtml) $oSock.SendString($oSbResponse.GetAsString()) $oSock.Close(50) ; The information we need is in the startLine. ; For example, the startLine will look like this: ; GET /?oauth_token=abcdRQAAZZAAxfBBAAABVabcd_k&oauth_verifier=9rdOq5abcdCe6cn8M3jabcdj3Eabcd HTTP/1.1 $oSbStartLine = ObjCreate("Chilkat.StringBuilder") $oSbStartLine.Append($startLine) Local $iNumReplacements = $oSbStartLine.Replace("GET /?","") $iNumReplacements = $oSbStartLine.Replace(" HTTP/1.1","") $oSbStartLine.Trim() ; oauth_token=abcdRQAAZZAAxfBBAAABVabcd_k&oauth_verifier=9rdOq5abcdCe6cn8M3jabcdj3Eabcd ConsoleWrite("startline: " & $oSbStartLine.GetAsString() & @CRLF) $oHashTab.Clear $oHashTab.AddQueryParams($oSbStartLine.GetAsString()) $sRequestToken = $oHashTab.LookupStr("oauth_token") Local $sAuthVerifier = $oHashTab.LookupStr("oauth_verifier") ; ------------------------------------------------------------------------------ ; Finally , we must exchange the OAuth Request Token for an OAuth Access Token. $oHttp.OAuthToken = $sRequestToken $oHttp.OAuthVerifier = $sAuthVerifier ; We don't need the "Authorization: OAuth ..." header for this POST. $oHttp.OAuth1 = False $oReq.RemoveParam "oauth_callback" $oReq.AddParam "oauth_verifier",$sAuthVerifier $oReq.AddParam "oauth_token",$sRequestToken $oResp = $oHttp.PostUrlEncoded($sAccessTokenUrl,$oReq) If ($oHttp.LastMethodSuccess <> True) Then ConsoleWrite($oHttp.LastErrorText & @CRLF) Exit EndIf ; Make sure a successful response was received. If ($oResp.StatusCode <> 200) Then ConsoleWrite($oResp.StatusLine & @CRLF) ConsoleWrite($oResp.Header & @CRLF) ConsoleWrite($oResp.BodyStr & @CRLF) Exit EndIf ; If successful, the resp.BodyStr contains something like this: ; oauth_token=85123455-fF41296Bi3daM8eCo9Y5vZabcdxXpRv864plYPOjr&oauth_token_secret=afiYJOgabcdSfGae7BDvJVVTwys8fUGpra5guZxbmFBZo&user_id=85612355&screen_name=chilkatsoft&x_auth_expires=0 ConsoleWrite($oResp.BodyStr & @CRLF) $oHashTab.Clear $oHashTab.AddQueryParams($oResp.BodyStr) Local $sAccessToken = $oHashTab.LookupStr("oauth_token") Local $sAccessTokenSecret = $oHashTab.LookupStr("oauth_token_secret") Local $sUserId = $oHashTab.LookupStr("user_id") Local $screenName = $oHashTab.LookupStr("screen_name") ; The access token + secret is what should be saved and used for ; subsequent REST API calls. ConsoleWrite("Access Token = " & $sAccessToken & @CRLF) ConsoleWrite("Access Token Secret = " & $sAccessTokenSecret & @CRLF) ConsoleWrite("user_id = " & $sUserId & @CRLF) ConsoleWrite("screen_name = " & $screenName & @CRLF) ; Save this access token for future calls. ; Just in case we need user_id and screen_name, save those also.. $oJson = ObjCreate("Chilkat.JsonObject") $oJson.AppendString("oauth_token",$sAccessToken) $oJson.AppendString("oauth_token_secret",$sAccessTokenSecret) $oJson.AppendString("user_id",$sUserId) $oJson.AppendString("screen_name",$screenName) $oFac = ObjCreate("Chilkat.FileAccess") $oFac.WriteEntireTextFile("qa_data/tokens/twitter.json",$oJson.Emit(),"utf-8",False) ConsoleWrite("Success." & @CRLF) |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.