Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am using the qlikbelt with the qrs-Interact module and it calls the qrs reload function via a post. I am getting code 204 with no data but "204::" returned. What does this mean?
(the 'received error code' is text i wrote. idk if its an error or not)
trt.Post(
'app/'+appId+'/reload', //qrs call that is passed to the post function
{}
,
'json'
).then(function(result) //this is never called because the post function identifies it as an error
{
console.log(result.statusCode);
console.log(result.body);
console.log('Success: App refreshed.');
})
That is expected. A 204 HTTP response isn't an error but merely that the request succeeded but there was not a content response:
The server has fulfilled the request but does not need to return an entity-body
That is expected. A 204 HTTP response isn't an error but merely that the request succeeded but there was not a content response:
The server has fulfilled the request but does not need to return an entity-body
Thanks buddy!