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
(Swift 2) TikTok Shop Get CategoriesSee more TikTok Shop ExamplesAn example showing how to use a TikTok Shops access token in an API call. IMPORTANT: This example requires a pre-release for the next version of Chilkat after the current v9.5.0.99 release. Contact info@chilkatsoft.com if you wish to get a pre-release. However, pre-releases of .NET Core (hosted on NuGet) and Node.js will not be possible.
func chilkatTest() { // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. let http = CkoHttp() // It is assumed we previously obtained an OAuth2 access token. // This example loads the JSON access token file // saved by this example: Get TikTok Shop OAuth2 Access Token // or refrehsed by this example: Get TikTok Shop Refresh OAuth2 Access Token let jsonToken = CkoJsonObject() var success: Bool = jsonToken.LoadFile("qa_data/tokens/tiktok-shops.json") if success != true { print("Failed to load tiktok-shops.json") return } // Replace values in all caps with your specific values. // SHOP_CIPHER and SHOP_ID are returned from this example: Get Authorized Shops let queryParams = CkoJsonObject() queryParams.UpdateString("app_key", value: "APP_KEY") queryParams.UpdateString("shop_cipher", value: "SHOP_CIPHER") queryParams.UpdateString("shop_id", value: "SHOP_ID") let dt = CkoDateTime() queryParams.UpdateString("timestamp", value: dt.GetAsUnixTimeStr(false)) queryParams.UpdateInt("version", value: 202309) // Sort the JSON members by member name, in ascending order (A-Z), case sensitive.. // Note: The Sort method is added in Chilkat v9.5.0.100 var ascending: Bool = true var caseSensitive: Bool = true queryParams.Sort(ascending, caseSensitive: caseSensitive) var appSecret: String? = "APP_SECRET" var path: String? = "/product/202309/categories" // Build the StringToSign let sb = CkoStringBuilder() sb.Append(appSecret) sb.Append(path) var numParams: Int = queryParams.Size.intValue var i: Int = 0 while i < numParams { sb.Append(queryParams.NameAt(i)) sb.Append(queryParams.StringAt(i)) i = i + 1 } sb.Append(appSecret) let crypt = CkoCrypt2() crypt.HashAlgorithm = "SHA256" crypt.MacAlgorithm = "HMAC" crypt.EncodingMode = "hex_lower" crypt.SetMacKeyString(appSecret) var sig: String? = crypt.MacStringENC(sb.GetAsString()) queryParams.UpdateString("access_token", value: jsonToken.StringOf("data.access_token")) queryParams.UpdateString("sign", value: sig) http.SetRequestHeader("x-tts-access-token", value: jsonToken.StringOf("data.access_token")) http.SetRequestHeader("content-type", value: "application/json") var resp: CkoHttpResponse? = http.QuickRequestParams("GET", url: "https://open-api.tiktokglobalshop.com/product/202309/categories", json: queryParams) if http.LastMethodSuccess == false { print("\(http.LastErrorText)") return } let json = CkoJsonObject() resp!.GetBodyJson(json) print("\(resp!.StatusCode.intValue)") resp = nil var id: String? var is_leaf: Bool var local_name: String? var parent_id: String? var j: Int var count_j: Int var strVal: String? var code: Int = json.IntOf("code").intValue var message: String? = json.StringOf("message") var request_id: String? = json.StringOf("request_id") i = 0 var count_i: Int = json.SizeOfArray("data.categories").intValue while i < count_i { json.I = i id = json.StringOf("data.categories[i].id") is_leaf = json.BoolOf("data.categories[i].is_leaf") local_name = json.StringOf("data.categories[i].local_name") print("local_name: \(local_name!)") parent_id = json.StringOf("data.categories[i].parent_id") j = 0 count_j = json.SizeOfArray("data.categories[i].permission_statuses").intValue while j < count_j { json.J = j strVal = json.StringOf("data.categories[i].permission_statuses[j]") j = j + 1 } i = i + 1 } } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.