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
(PowerBuilder) Etsy OAuth1 AuthorizationSee more Etsy ExamplesDemonstrates 3-legged OAuth1 authorization for Etsy. For more information, see https://www.etsy.com/developers/documentation/getting_started/oauth
integer li_rc string ls_ConsumerKey string ls_ConsumerSecret string ls_RequestTokenUrl string ls_AuthorizeUrl string ls_AccessTokenUrl string ls_CallbackUrl integer li_CallbackLocalPort oleobject loo_Http integer li_Success oleobject loo_Req oleobject loo_Resp oleobject loo_HashTab string ls_RequestToken string ls_RequestTokenSecret oleobject loo_SbUrlForBrowser string ls_Url oleobject loo_ListenSock integer li_BackLog integer li_MaxWaitMs oleobject loo_Task oleobject loo_Sock string ls_StartLine string ls_RequestHeader oleobject loo_SbResponseHtml oleobject loo_SbResponse oleobject loo_SbStartLine integer li_NumReplacements string ls_AuthVerifier string ls_AccessToken string ls_AccessTokenSecret oleobject loo_Json oleobject loo_Fac ls_ConsumerKey = "keystring" ls_ConsumerSecret = "shared_secret" // Specify one or more SPACE separated scopes as query params in the requestTokenUrl // See https://www.etsy.com/developers/documentation/getting_started/oauth#section_permission_scopes ls_RequestTokenUrl = "https://openapi.etsy.com/v2/oauth/request_token?scope=email_r%20listings_r%20listings_w%20listings_d" ls_AuthorizeUrl = "https://www.etsy.com/oauth/signin" ls_AccessTokenUrl = "https://openapi.etsy.com/v2/oauth/access_token" // The port number is picked at random. It's some unused port that won't likely conflict with anything else.. ls_CallbackUrl = "http://localhost:3017/" li_CallbackLocalPort = 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 loo_Http = create oleobject // Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0 li_rc = loo_Http.ConnectToNewObject("Chilkat.Http") if li_rc < 0 then destroy loo_Http MessageBox("Error","Connecting to COM object failed") return end if loo_Http.OAuth1 = 1 loo_Http.OAuthConsumerKey = ls_ConsumerKey loo_Http.OAuthConsumerSecret = ls_ConsumerSecret loo_Http.OAuthCallback = ls_CallbackUrl loo_Req = create oleobject // Use "Chilkat_9_5_0.HttpRequest" for versions of Chilkat < 10.0.0 li_rc = loo_Req.ConnectToNewObject("Chilkat.HttpRequest") loo_Resp = loo_Http.PostUrlEncoded(ls_RequestTokenUrl,loo_Req) if loo_Http.LastMethodSuccess <> 1 then Write-Debug loo_Http.LastErrorText destroy loo_Http destroy loo_Req return end if // If successful, the resp.BodyStr contains something like this: // login_url=https%3A%2F%2Fwww.etsy.com%2Foauth%2Fsignin%3Foauth_consumer_key%3D9ad9l1omxzbwfr2niq0ce1ly%26oauth_token%3D7116b4d0c72c2736561853d9e50113%26service%3Dv2_prod&oauth_token=7116b4d0c72c2736561853d9e50113&oauth_token_secret=3b7612b5d3&oauth_callback_confirmed=true&oauth_consumer_key=9ad9l1omxzbwfr2niq0ce1ly&oauth_callback=http%3A%2F%2Flocalhost%3A3017%2F Write-Debug loo_Resp.BodyStr // We'll need this for later.. loo_HashTab = create oleobject // Use "Chilkat_9_5_0.Hashtable" for versions of Chilkat < 10.0.0 li_rc = loo_HashTab.ConnectToNewObject("Chilkat.Hashtable") loo_HashTab.AddQueryParams(loo_Resp.BodyStr) ls_RequestToken = loo_HashTab.LookupStr("oauth_token") ls_RequestTokenSecret = loo_HashTab.LookupStr("oauth_token_secret") loo_Http.OAuthTokenSecret = ls_RequestTokenSecret Write-Debug "oauth_token = " + ls_RequestToken Write-Debug "oauth_token_secret = " + ls_RequestTokenSecret // --------------------------------------------------------------------------- // 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. loo_SbUrlForBrowser = create oleobject // Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0 li_rc = loo_SbUrlForBrowser.ConnectToNewObject("Chilkat.StringBuilder") loo_SbUrlForBrowser.Append(ls_AuthorizeUrl) loo_SbUrlForBrowser.Append("?") loo_SbUrlForBrowser.Append(loo_Resp.BodyStr) ls_Url = loo_SbUrlForBrowser.GetAsString() destroy loo_Resp // When the url is loaded into a browser, the response from Etsy 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. loo_ListenSock = create oleobject // Use "Chilkat_9_5_0.Socket" for versions of Chilkat < 10.0.0 li_rc = loo_ListenSock.ConnectToNewObject("Chilkat.Socket") li_BackLog = 5 li_Success = loo_ListenSock.BindAndListen(li_CallbackLocalPort,li_BackLog) if li_Success <> 1 then Write-Debug loo_ListenSock.LastErrorText destroy loo_Http destroy loo_Req destroy loo_HashTab destroy loo_SbUrlForBrowser destroy loo_ListenSock return end if // 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. li_MaxWaitMs = 60000 loo_Task = loo_ListenSock.AcceptNextConnectionAsync(li_MaxWaitMs) loo_Task.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 Google 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. li_Success = loo_Task.Wait(li_MaxWaitMs) if not li_Success OR (loo_Task.StatusInt <> 7) OR (loo_Task.TaskSuccess <> 1) then if not li_Success then // The task.LastErrorText applies to the Wait method call. Write-Debug loo_Task.LastErrorText else // The ResultErrorText applies to the underlying task method call (i.e. the AcceptNextConnection) Write-Debug loo_Task.Status Write-Debug loo_Task.ResultErrorText end if destroy loo_Task destroy loo_Http destroy loo_Req destroy loo_HashTab destroy loo_SbUrlForBrowser destroy loo_ListenSock return end if // 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. loo_ListenSock.Close(10) // First get the connected socket. loo_Sock = create oleobject // Use "Chilkat_9_5_0.Socket" for versions of Chilkat < 10.0.0 li_rc = loo_Sock.ConnectToNewObject("Chilkat.Socket") loo_Sock.LoadTaskResult(loo_Task) destroy loo_Task // Read the start line of the request.. ls_StartLine = loo_Sock.ReceiveUntilMatch("~r~n") if loo_Sock.LastMethodSuccess <> 1 then Write-Debug loo_Sock.LastErrorText destroy loo_Http destroy loo_Req destroy loo_HashTab destroy loo_SbUrlForBrowser destroy loo_ListenSock destroy loo_Sock return end if // Read the request header. ls_RequestHeader = loo_Sock.ReceiveUntilMatch("~r~n~r~n") if loo_Sock.LastMethodSuccess <> 1 then Write-Debug loo_Sock.LastErrorText destroy loo_Http destroy loo_Req destroy loo_HashTab destroy loo_SbUrlForBrowser destroy loo_ListenSock destroy loo_Sock return end if // 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. loo_SbResponseHtml = create oleobject // Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0 li_rc = loo_SbResponseHtml.ConnectToNewObject("Chilkat.StringBuilder") loo_SbResponseHtml.Append("<html><body><p>Chilkat thanks you!</b></body</html>") loo_SbResponse = create oleobject // Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0 li_rc = loo_SbResponse.ConnectToNewObject("Chilkat.StringBuilder") loo_SbResponse.Append("HTTP/1.1 200 OK~r~n") loo_SbResponse.Append("Content-Length: ") loo_SbResponse.AppendInt(loo_SbResponseHtml.Length) loo_SbResponse.Append("~r~n") loo_SbResponse.Append("Content-Type: text/html~r~n") loo_SbResponse.Append("~r~n") loo_SbResponse.AppendSb(loo_SbResponseHtml) loo_Sock.SendString(loo_SbResponse.GetAsString()) loo_Sock.Close(50) // The information we need is in the startLine. // For example, the startLine will look like this: // GET /?oauth_token=a3bc8bec84acc31418b68a532e9511&oauth_verifier=b5558d37 HTTP/1.1 loo_SbStartLine = create oleobject // Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0 li_rc = loo_SbStartLine.ConnectToNewObject("Chilkat.StringBuilder") loo_SbStartLine.Append(ls_StartLine) li_NumReplacements = loo_SbStartLine.Replace("GET /?","") li_NumReplacements = loo_SbStartLine.Replace(" HTTP/1.1","") loo_SbStartLine.Trim() // oauth_token=a3bc8bec84acc31418b68a532e9511&oauth_verifier=b5558d37 Write-Debug "startline: " + loo_SbStartLine.GetAsString() loo_HashTab.Clear() loo_HashTab.AddQueryParams(loo_SbStartLine.GetAsString()) ls_RequestToken = loo_HashTab.LookupStr("oauth_token") ls_AuthVerifier = loo_HashTab.LookupStr("oauth_verifier") // ------------------------------------------------------------------------------ // Finally , we must exchange the OAuth Request Token for an OAuth Access Token. loo_Http.OAuthToken = ls_RequestToken loo_Http.OAuthVerifier = ls_AuthVerifier loo_Resp = loo_Http.PostUrlEncoded(ls_AccessTokenUrl,loo_Req) if loo_Http.LastMethodSuccess <> 1 then Write-Debug loo_Http.LastErrorText destroy loo_Http destroy loo_Req destroy loo_HashTab destroy loo_SbUrlForBrowser destroy loo_ListenSock destroy loo_Sock destroy loo_SbResponseHtml destroy loo_SbResponse destroy loo_SbStartLine return end if // Make sure a successful response was received. if loo_Resp.StatusCode <> 200 then Write-Debug loo_Resp.StatusLine Write-Debug loo_Resp.Header Write-Debug loo_Resp.BodyStr destroy loo_Http destroy loo_Req destroy loo_HashTab destroy loo_SbUrlForBrowser destroy loo_ListenSock destroy loo_Sock destroy loo_SbResponseHtml destroy loo_SbResponse destroy loo_SbStartLine return end if // If successful, the resp.BodyStr contains something like this: // oauth_token=7898d7ba280dc791586dcfd26b37a9&oauth_token_secret=f2a7c267aa Write-Debug loo_Resp.BodyStr loo_HashTab.Clear() loo_HashTab.AddQueryParams(loo_Resp.BodyStr) ls_AccessToken = loo_HashTab.LookupStr("oauth_token") ls_AccessTokenSecret = loo_HashTab.LookupStr("oauth_token_secret") destroy loo_Resp // The access token + secret is what should be saved and used for // subsequent REST API calls. Write-Debug "Access Token = " + ls_AccessToken Write-Debug "Access Token Secret = " + ls_AccessTokenSecret // Save this access token for future calls. // Just in case we need user_id and screen_name, save those also.. loo_Json = create oleobject // Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0 li_rc = loo_Json.ConnectToNewObject("Chilkat.JsonObject") loo_Json.AppendString("oauth_token",ls_AccessToken) loo_Json.AppendString("oauth_token_secret",ls_AccessTokenSecret) loo_Fac = create oleobject // Use "Chilkat_9_5_0.FileAccess" for versions of Chilkat < 10.0.0 li_rc = loo_Fac.ConnectToNewObject("Chilkat.FileAccess") loo_Fac.WriteEntireTextFile("qa_data/tokens/etsy.json",loo_Json.Emit(),"utf-8",0) Write-Debug "Success." destroy loo_Http destroy loo_Req destroy loo_HashTab destroy loo_SbUrlForBrowser destroy loo_ListenSock destroy loo_Sock destroy loo_SbResponseHtml destroy loo_SbResponse destroy loo_SbStartLine destroy loo_Json destroy loo_Fac |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.