403 errors after upgrading to 11.1.4 with Cookie Authentication

I'm getting 403 errors on a single page - api.ashx/v2/notifications.json?IsRead=false&PageSize=1&PageIndex=0&_=1597934978472

I'm using Cookie Authentication.  I have ensured that SameSite setting is set to Lax matching the setting in Verint Community.

Parents Reply
  • Would it be possible to include any JavaScript errors and an HTTP trace? Also, can you try running this in the browser console? It's a simple REST request that should just return the current user's user object in the console. I'm trying to verify if any REST requests from the UI are being authenticated.

    jQuery.telligent.evolution.get({
    	url: jQuery.telligent.evolution.site.getBaseUrl() + 'api.ashx/v2/users/{id}.json',
    	data: { id: jQuery.telligent.evolution.user.accessing.id },
    	success: function(response) { 
    		console.log(response.User);
    	}
    });

Children