|  | 
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
| (Classic ASP) ChartURL - Create a Signed URLDemonstrates how to create a signed URL for ChartURL. 
 <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> <body> <% ' This example assumes the Chilkat API to have been previously unlocked. ' See Global Unlock Sample for sample code. ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.Crypt2") set crypt = Server.CreateObject("Chilkat.Crypt2") ' Example key: "dek-d7a46236eda961a6c3c18ffcc6b077ba87d27e9ae85f7842c6d427c265dd5f69d5131308d93332353d4a55a4b1160fcf516515a4a9f0aa50fbf2d7a2e7d0f1c5" key = "charturl-sign-encrypt-key" ' Example token: "dt-RwYN" token = "charturl-token" slug = "weekly-activity" data = "{ ""options"": {""data"": {""columns"": [[""This Week"",10,13],[""Last Week"",9,5]]}}}" crypt.HashAlgorithm = "SHA256" crypt.MacAlgorithm = "HMAC" success = crypt.SetMacKeyString(key) crypt.EncodingMode = "base64" ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.JsonObject") set json = Server.CreateObject("Chilkat.JsonObject") success = json.Load(data) Response.Write "<pre>" & Server.HTMLEncode( "json = " & json.Emit()) & "</pre>" sig = crypt.MacStringENC(json.Emit()) ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.StringBuilder") set sbUrl = Server.CreateObject("Chilkat.StringBuilder") success = sbUrl.Append("https://charturl.com/i/") success = sbUrl.Append(token) success = sbUrl.Append("/") success = sbUrl.Append(slug) success = sbUrl.Append("?d=") success = sbUrl.Append(crypt.EncodeString(json.Emit(),"utf-8","url")) success = sbUrl.Append("&s=") success = sbUrl.Append(crypt.EncodeString(sig,"utf-8","url")) Response.Write "<pre>" & Server.HTMLEncode( "Signed URL: " & sbUrl.GetAsString()) & "</pre>" %> </body> </html> | ||||
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.