Klarna Docs - On-Site Messaging

On-Site Messaging

Adding On-Site Messaging is as easy as it gets. To achieve this tailor made experience for the user you just need to:

  • Request access to On-Site Messaging
  • Create the native view
  • Set the parameters
  • Render the view

If you are using a version of the SDK prior 2.3.2, to be able to integrate On-site Messaging our team needs to enable the access for it. You can request access through your dedicated Delivery Manager. Please refer the Merchant ID (MID) and/or the name of your brand/company (merchant name), the countries you request access and the environment (playground or production).

The On-Site Messaging native view in iOS is called KlarnaOSMView. You can create KlarnaOSMView programmatically and add it to your view controller or custom views.

You can create the native view programmatically and place it in your application with desired layout options.

SWIFT
// Create the placement view
let osmView = KlarnaOSMView()
// Set constraints
// ...
osmView.translatesAutoresizingMaskIntoConstraints = false
view.addSubview(osmView)

Parameters used for the KlarnaOSMView are set as variables of the UIView instance. These can be identifier string values, amount or enumeration values.

ParamTypeDescription
clientIdStringOn-Site Messaging Client Identifier gathered from Klarna Merchant Portal.
placementKeyString ("credit-promotion-badge" or "top-strip-promotion-badge")Placement key identifier from Klarna Merchant Portal. At the moment the supported placement keys are "credit-promotion-badge" and "top-strip-promotion-badge"
localeStringLocale string for the placement configuration, default value is en-US.
purchaseAmountIntAmount for the placement. Set in micro units ($120.00 = 12000), used for amount based credit promotions.
environmentKlarnaOSMEnvironmentEnumerated environment value to specify merchant’s running environment. Default value is demo environment.
regionKlarnaOSMRegionEnumerated region value to specify merchant’s running market region.
themeKlarnaOSMThemeEnumerated theme value to specify how to stylize the view on light and dark configurations.
styleConfigurationKlarnaOSMStyleConfigurationCan be used to customize the look and feel of the placement. If not set, a default look and feel will be used based on the specified theme. Note: this is available from version 2.6.20.
hostViewControllerUIViewControllerUIViewController instance to specify parent view controller. It will be used for inner linking for informational pages. The reference will be kept as a weak reference.
delegateKlarnaOSMViewEventListenerThis delegate will be used to notify your application for changes in size of the native view.

Environment enumeration will be used to define whether to use a demo placement or fetch placement configurations from either playground or production.

NameDescription
demoThis environment ignores all other parameters and shows a demo placement config containing all On-Site Messaging features.
playgroundThis environment is for placement configurations from playground Merchant Portal.
productionThis environment is for production builds of the app with placement configurations for production merchants.

Region enumeration will be used to define which endpoint to connect as a source for the placement configurations.

NameDescriptions
euRegion value for Europe.
naRegion value for North America.
ocRegion value for Oceania.

Theme enumeration will be used to define which style of OSM to be used, depending on either the app’s configuration or the system setting. Each style has a predefined set of values for background color, text color, text size, ... that will be used to style the OSM view.

NameDescriptions
lightLight style for placement view.
darkDark style for placement view.
automaticAutomatic theme that will use the system’s user interface style.

This feature is available from version 2.6.20.

By using KlarnaOSMStyleConfiguration you can customize the appearance of the OSM view to some extend. As of now, you can customize the following:

  • Background color
  • Text color
  • Text size
  • Text font

Please note that styleConfiguration takes precedence over theme. This has the following implications:

  • If you specify a value thorough styleConfiguration (text color, for example) then this value will be used to style the OSM view regardless of the value that theme provides.
  • If your app supports light and dark mode, then it's your responsibility to update styleConfiguration and call the render method when the device's theme changes so that the appearance of the OSM view updates.

To set a custom style for the OSM view you can do like the following:

SWIFT
let klarnaOsmStyleConfiguration = KlarnaOSMStyleConfiguration.Builder()
    .setBackgroundColor(.white)
    .setTextStyleConfiguration(
        KlarnaTextStyleConfiguration.Builder()
            .setTextColor(.black)
            .setTextFont(.systemFont(ofSize: 0.0))
            .setTextSize(14.0)
            .build()
    )
    .build()

All of the parameters for On-Site Messaging are stored as variables on the KlarnaOSMView instance. The required ones need to be set before calling the render method, otherwise the RenderResult will return a validation error for the missing parameter.

SWIFT
osmView.clientId = "<client-id>"
osmView.placementKey = "<placement-key>"
osmView.locale = "en-US"
osmView.purchaseAmount = 1000
osmView.environment = .production
osmView.region = .na
osmView.theme = .dark
osmView.styleConfiguration = ...
osmView.delegate = self
osmView.hostViewController = self

Before rendering the OSM View and displaying its contents, the SDK doesn’t know how the view is integrated in your view hierarchy, so it exposes a delegate (for SDK versions <= 2.2.2) and a sizingDelegate (for SDK versions > 2.2.2). These delegates inform you about the corresponding size of the OSM View after the render function is called, allowing you to update the UI accordingly with the changes in the OSM view height.

Depending on the SDK version you need to set one or the other, not both.

SWIFT
osmView.delegate = self

The delegate conforms to the protocol KlarnaOSMViewEventListener that has only the following function to be implemented:

SWIFT
func klarnaOSMViewResized(_ height: CGFloat)

That is where the calculated height of the OSM View based on the content rendered will be returned, so that your UI can be adjusted with that value.

SWIFT
osmView.sizingDelegate = self

This new delegate conforms to the protocol KlarnaSizingDelegate that has only the following function to be implemented:

SWIFT
func klarnaComponent(_ klarnaComponent: KlarnaComponent, resizedToHeight height: CGFloat)

This new function will receive two parameters:

  • KlarnaComponent: Since Klarna offers different components in the SDK, if you are using more than one, it is useful to know which component changed its height.
  • Height: the final height of the OSMView calculated when the render method is called and returned based on the content.

Inside this method you can adjust your UI with the proper height calculated for the OSM View.

Once you have set all the parameters to the KlarnaOSMView, you are ready to render the actual placement view. To do that, you need to call the render method of the view with the RenderResult callback parameter.

Once the render method is called, first the view will validate all the parameters. If there is a missing parameter the RenderResult callback will be invoked with corresponding error values. If parameters are valid then the view will try to fetch placement configuration from On-Site Messaging API. Any errors or failures from this network request will also invoke RenderResult callback if necessary. If the placement configuration is fetched and valid then the KlarnaOSMView will render it with native views and invoke the RenderResult callback with a null value.

The RenderResult callback can be used for logging purposes or to make the KlarnaOSMView visible or not, according to the error.

SWIFT
osmView.render(callback: { [weak self] error in
    ...
})

Similar to other parts of the SDK, On-Site Messaging also makes use of the KlarnaMobileSDKError class. To read more about the error handling and error object properties refer to the On-Site Messaging Error Handling guide.

These are the predefined names for errors that can happen during the placement render flow. These names are available as static String values with typealias KlarnaOSMError.

Error NameDescription
KlarnaOSMErrorMissingClientIdClient ID was not set. Set the clientId variable and invoke render again.
KlarnaOSMErrorMissingPlacementKeyPlacement key was not set. Set the placementKey variable and invoke render again.
KlarnaOSMErrorMissingRegionRegion was not set. Set the region variable and invoke render again.
KlarnaOSMErrorMissingHostHosting UIViewController was not set. Set the hostViewController variable and invoke render again.
KlarnaOSMErrorInvalidPlacementConfigFetched configuration from the API can not be rendered by the native view.
KlarnaOSMErrorPlacementErrorOn-Site Messaging API has returned an error. Message of this error will contain information sent from the API.
KlarnaOSMErrorNetworkErrorA network error occurred and the placement will not be rendered.
KlarnaOSMErrorDisabledNative On-Site Messaging has been disabled by Klarna, the placement will not be rendered.