![]() |
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
(Go) Shopware 6 - Get OAuth2 Access Token using Client Credentials (Integration)See more Shopware 6 ExamplesDemonstrates how to get an OAuth2 access token with an integration.Note: This example requires Chilkat v11.0.0 or greater. For more information, see https://docs.shopware.com/en/shopware-platform-dev-en/admin-api-guide/authentication
success := false // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. http := Http_Ref.html">chilkat.NewHttp() // Sends the following POST // POST /api/oauth/token // { // "grant_type": "client_credentials", // "client_id": "<client-id>", // "client_secret": "<client-secret>" // } // Use this online tool to generate code from sample JSON: // Generate Code to Create JSON // The following JSON is sent in the request body. json := JsonObject_Ref.html">chilkat.NewJsonObject() json.UpdateString("grant_type","client_credentials") json.UpdateString("client_id","client-id") json.UpdateString("client_secret","client-secret") resp := HttpResponse_Ref.html">chilkat.NewHttpResponse() success = http.HttpJson("POST","https://my-shopware-6-shop.de/api/oauth/token",json,"application/json",resp) if success == false { fmt.Println(http.LastErrorText()) http.DisposeHttp() json.DisposeJsonObject() resp.DisposeHttpResponse() return } sbResponseBody := StringBuilder_Ref.html">chilkat.NewStringBuilder() resp.GetBodySb(sbResponseBody) jResp := JsonObject_Ref.html">chilkat.NewJsonObject() jResp.LoadSb(sbResponseBody) jResp.SetEmitCompact(false) fmt.Println("Response Body:") fmt.Println(*jResp.Emit()) respStatusCode := resp.StatusCode() fmt.Println("Response Status Code = ", respStatusCode) if respStatusCode >= 400 { fmt.Println("Response Header:") fmt.Println(resp.Header()) fmt.Println("Failed.") http.DisposeHttp() json.DisposeJsonObject() resp.DisposeHttpResponse() sbResponseBody.DisposeStringBuilder() jResp.DisposeJsonObject() return } // Sample JSON response: // (Sample code for parsing the JSON response is shown below) // { // "token_type": "Bearer", // "expires_in": 600, // "access_token": "xxxxxxxxxxxxxx", // "refresh_token": "token" // } // Sample code for parsing the JSON response... // Use the following online tool to generate parsing code from sample JSON: // Generate Parsing Code from JSON token_type := jResp.StringOf("token_type") expires_in := jResp.IntOf("expires_in") access_token := jResp.StringOf("access_token") refresh_token := jResp.StringOf("refresh_token") // Save our JSON to a file (to be used in other examples..) success = jResp.WriteFile("qa_data/tokens/shopware6.json") http.DisposeHttp() json.DisposeJsonObject() resp.DisposeHttpResponse() sbResponseBody.DisposeStringBuilder() jResp.DisposeJsonObject() |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.