Hi,
Is there any way to add an experience fragment to a page dynamically using HTL or get requests?
I keep getting forbidden when trying to access experience fragments using get requests like in the code below :
function getFragment(path) {
$.ajax({
type: 'GET',
url: path,
success: function(xf) {
$("#article-container")
.append(xf);
}
});
}
Regards,
Mark