Iframe

Launch Cart has possibility to display external app in Launch Cart's dashboard.
In order to enable this feature please contact us at [email protected]

Launch Cart will display URL you specify in feature request as App page inside dashboard.
IFrame source URL will contain your URL with store_id, current time and hashed HMAC (sha256) under hmac query param.

HMAC generation

We generate HMAC using this function:

hmac = base64_decode(hash_hmac('sha256', store_id + time, client_secret))

HMAC is signed using app client_secret code.