Search code examples
temenos-quantum

How to initialize Kony Fabric client


I am new to the platform and having problems in initializing Kony Fabric client and using the integration services. Is there any link or reference?


Solution

  • You can refer the documentation where it has been mentioned very nicely. To manually initialize the kony fabric client:

    //Sample code to initialize Kony Fabric Client
    var appkey = <your-app-key>
    var appsecret = <your-app-secret>
    var serviceURL = <your-service-url>
    
    var client = new kony.sdk();
    client.init(appkey, appsecret, serviceURL, function(response) {
        kony.print("Init success");
    }, function(error) {
        kony.print("Init Failure");
    });
    

    You can use client to use the servcies. However manual intialization is not recommended. You should always should always use initWithServiceDoc See the link for more information:

    http://docs.kony.com/konylibrary/konyfabric/kony_fabric_user_guide/Content/KonyStudio/Installing_KonyJS_SDK.htm