Via de website van Bpost heb ik een voorbeeld gevonden dat eventueel kan geïntegreerd worden in een website.
Code:
<head>
<meta name="viewport" content="width=device-width, initialscale=1.0,
maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
<script
src="https://shippingmanager.bpost.be/ShmFrontEnd/shm.js"></script>
<script>
function loadShm() {
SHM.open({
integrationType: 'POPUP',
popupWidth: 1024, //optional
popupHeight: 768, //optional
parameters: {
accountId: '999010',
orderReference: 'test-order',
customerCountry: 'BE',
extraSecure: '',
checksum :
'c6a1f4a18c14dcb94fc79e44bff0a75a0db41726cddf10a8558aed41a2ea7ba1'
}
});
}
</script>
</head>
<body>
<div>
<input type="button" onclick="loadShm();" value="Load in modal">
</div>
</body>
Iemand een idee hoe ik hier mee moet beginnen ?