Reference for integrating with the Bucksapp Web SDK.
To get started with Bucksapp Web SDK, first, you'll want to contact us to get API keys and get further information about acquiring credentials for the Bucksapp API.
npm i @bucksapp/web-bucksapp-sdk
<script src=".../dist/bucksapp.js"></script>
<body>
...
<div id="iframe-container"></div>
...
<script src=".../dist/bucksapp.js"></script>
<script>
window.onload = (event) => {
Bucksapp.initializeIframe(
'iframe-container',
'API_KEY',
'uuid',
'environment'
{ "language": 'en' } //options
);
};
</script>
</body>
language
["es"
, "en"
]