<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: NPrinting Task Execution call using Rest API throwing 403 Forbidden error in Qlik NPrinting</title>
    <link>https://community.qlik.com/t5/Qlik-NPrinting/NPrinting-Task-Execution-call-using-Rest-API-throwing-403/m-p/1734049#M29672</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thanks for this info.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was trying your solution but it seems something else is going wrong. As you see in my raw session cookie&amp;nbsp;TextBetween('$(vCookieRaw)','SameSite=None,','Path=/',2) won't work as '&lt;SPAN&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;SameSite=None,&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;' only comes once in whole string.&lt;/P&gt;&lt;P&gt;Is my raw cookie wrong ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Raw Session Cookie: &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;"NPWEBCONSOLE_SESSION=7803373bd0a0e6a9ab3fb6a87e2fc8933aede485-%00_TS%3Asession%00%00NPWEBCONSOLE_XSRF-TOKEN%3AVK7fJ59JPWsnmn9vJ89JoCkxGeO8V1IHh0o3eccyc1w%3D%00; Path=/; HttpOnly; Secure; &lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;SameSite=None,&lt;/FONT&gt;&lt;/STRONG&gt;NPWEBCONSOLE_SESSION=5454317aee4bdce61ae0d9de0ad9399eef193fcc-%00_TS%3Asession%00%00NPWEBCONSOLE_XSRF-TOKEN%3AVK7fJ59JPWsnmn9vJ89JoCkxGeO8V1IHh0o3eccyc1w%3D%00%00userid%3A9f88adfb825a4eb19178e0dc2c4ca312%00%00userlogin%3A2020-08-07T10%3A16%3A15.1375265Z%00; &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;Path=/;&lt;/STRONG&gt;&lt;/FONT&gt; HttpOnly; Secure; SameSite=None" &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Truncated Session Cookie:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;"NPWEBCONSOLE_SESSION=5454317aee4bdce61ae0d9de0ad9399eef193fcc-%00_TS%3Asession%00%00NPWEBCONSOLE_XSRF-TOKEN%3AVK7fJ59JPWsnmn9vJ89JoCkxGeO8V1IHh0o3eccyc1w%3D%00%00userid%3A9f88adfb825a4eb19178e0dc2c4ca312%00%00userlogin%3A2020-08-07T10%3A16%3A15.1375265Z%00; "&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 07 Aug 2020 10:22:15 GMT</pubDate>
    <dc:creator>sajalgour2309</dc:creator>
    <dc:date>2020-08-07T10:22:15Z</dc:date>
    <item>
      <title>NPrinting Task Execution call using Rest API throwing 403 Forbidden error</title>
      <link>https://community.qlik.com/t5/Qlik-NPrinting/NPrinting-Task-Execution-call-using-Rest-API-throwing-403/m-p/1688334#M28423</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;We have recently migrated to NPrinting February 2020 SR1 version. Everything went smoothly and the server was up and running in no time. The only problem we are struggling to fix is the REST API calls to execute tasks.&lt;/P&gt;&lt;P&gt;API call to login URL is working i.e.&amp;nbsp;https://nprinting_server/api/v1/login/ntlm&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But all the other calls to URLs like the following giving me error "QVX_UNEXPECTED_END_OF_DATA: HTTP protocol error 403 (Forbidden)."&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;https://nprinting_server/api/v1/users or&amp;nbsp;&lt;/P&gt;&lt;P&gt;https://nprinting_server/api/v1/tasks/430133d4-7ce7-4418-96f2-ef4112339d4b/executions&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Script code that I am using is as below:&lt;/P&gt;&lt;P&gt;Please note that vCookie requires a little change after upgrade i.e. replace comma(,) with a semicolon(;) after the word Secure&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;let vCookie = TextBetween('$(vCookieRaw)','Secure;','Path=/',2);&lt;/P&gt;&lt;P&gt;let vPublshTaskURL = 'https://nprinting_server/api/v1/tasks/430133d4-7ce7-4418-96f2-ef4112339d4b/executions';&lt;/P&gt;&lt;P&gt;RestNPTaskTriggerTable:&lt;BR /&gt;SQL SELECT&lt;BR /&gt;"__KEY_data"&lt;BR /&gt;FROM JSON (wrap off) "data" PK "__KEY_data"&lt;BR /&gt;WITH CONNECTION( URL "$(vPublshTaskURL)", HTTPHEADER "cookie" "$(vCookie)");&lt;BR /&gt;[_post_items]:&lt;BR /&gt;LOAD [__KEY_data] AS [__KEY_data]&lt;BR /&gt;RESIDENT RestNPTaskTriggerTable&lt;BR /&gt;WHERE NOT IsNull([__KEY_data]);&lt;BR /&gt;DROP TABLE RestNPTaskTriggerTable;&lt;BR /&gt;Server throwing error:&lt;/P&gt;&lt;P&gt;QVX_UNEXPECTED_END_OF_DATA: HTTP protocol error 403 (Forbidden):&lt;BR /&gt;The server refused to fulfill the request.&lt;/P&gt;&lt;P&gt;I have checked the roles for user I am using to create the REST connection, which a domain user and has the Administrator role, everything looks alright.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any configuration I need to make on Nprinting server to allow resources to be used from other servers?&lt;/P&gt;&lt;P&gt;Any suggestions to resolve the issue?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;JM&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2020 21:56:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-NPrinting/NPrinting-Task-Execution-call-using-Rest-API-throwing-403/m-p/1688334#M28423</guid>
      <dc:creator>JM</dc:creator>
      <dc:date>2020-03-26T21:56:13Z</dc:date>
    </item>
    <item>
      <title>Re: NPrinting Task Execution call using Rest API throwing 403 Forbidden error</title>
      <link>https://community.qlik.com/t5/Qlik-NPrinting/NPrinting-Task-Execution-call-using-Rest-API-throwing-403/m-p/1688349#M28425</link>
      <description>&lt;P&gt;I guess you are not inspecting/ tracing on each step what your script is doing.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I faced the same issue after upgrade however code i am using is tracing all variables i capture on the way. I noticed that cookie was not returned as the structure of the string after authentication has changed!&lt;/P&gt;&lt;P&gt;You need to adjust your code to capture cookie - see red bit of the code below.&lt;/P&gt;&lt;P&gt;You can also see Trace statements below which straight away helped me identify this issue!&lt;/P&gt;&lt;DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;//&amp;nbsp;&amp;nbsp;Extracts&amp;nbsp;session&amp;nbsp;cookie&amp;nbsp;from&amp;nbsp;the&amp;nbsp;API&amp;nbsp;response&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Let&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;vCookieRaw&amp;nbsp;&amp;nbsp;=&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Peek&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Set-Cookie'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;'cookie_items'&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;Let&amp;nbsp;vCookie&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;=&amp;nbsp;TextBetween('$(vCookieRaw)','SameSite=None,','Path=/',2);&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;DROP&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;TABLE&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;RestConnectorMasterTable;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;//&amp;nbsp;&amp;nbsp;Trace&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Trace&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;---;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Trace&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Raw&amp;nbsp;Session&amp;nbsp;Cookie:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"$(vCookieRaw)"&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Trace&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Truncated&amp;nbsp;Session&amp;nbsp;Cookie:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"$(vCookie)"&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Mar 2020 02:15:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-NPrinting/NPrinting-Task-Execution-call-using-Rest-API-throwing-403/m-p/1688349#M28425</guid>
      <dc:creator>Lech_Miszkiewicz</dc:creator>
      <dc:date>2020-03-27T02:15:55Z</dc:date>
    </item>
    <item>
      <title>Re: NPrinting Task Execution call using Rest API throwing 403 Forbidden error</title>
      <link>https://community.qlik.com/t5/Qlik-NPrinting/NPrinting-Task-Execution-call-using-Rest-API-throwing-403/m-p/1688358#M28430</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I did trace the variables and outputs but didn't get the idea of removing the SameSite=None from the Cookie id as the API documentation are not updated.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Our code was working fine with the earlier version of NPrinting i.e Sept 2018.&lt;/P&gt;&lt;P&gt;Appreciate your support and help.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;JM&lt;/P&gt;</description>
      <pubDate>Fri, 27 Mar 2020 03:48:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-NPrinting/NPrinting-Task-Execution-call-using-Rest-API-throwing-403/m-p/1688358#M28430</guid>
      <dc:creator>JM</dc:creator>
      <dc:date>2020-03-27T03:48:47Z</dc:date>
    </item>
    <item>
      <title>Re: NPrinting Task Execution call using Rest API throwing 403 Forbidden error</title>
      <link>https://community.qlik.com/t5/Qlik-NPrinting/NPrinting-Task-Execution-call-using-Rest-API-throwing-403/m-p/1688360#M28431</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am glad I could help.&lt;/P&gt;&lt;P&gt;I was also blindsided,&amp;nbsp; but then I went to Qlik download page and checked documentation. This change was highlighted in release notes as a change to cookie.&lt;/P&gt;&lt;P&gt;If you preview cookies in your web browser you would notice which bits are necessary.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 419px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/30701i46F6D45C300785A2/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;</description>
      <pubDate>Fri, 27 Mar 2020 04:08:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-NPrinting/NPrinting-Task-Execution-call-using-Rest-API-throwing-403/m-p/1688360#M28431</guid>
      <dc:creator>Lech_Miszkiewicz</dc:creator>
      <dc:date>2020-03-27T04:08:54Z</dc:date>
    </item>
    <item>
      <title>Re: NPrinting Task Execution call using Rest API throwing 403 Forbidden error</title>
      <link>https://community.qlik.com/t5/Qlik-NPrinting/NPrinting-Task-Execution-call-using-Rest-API-throwing-403/m-p/1688745#M28453</link>
      <description>&lt;P&gt;Lech,&lt;/P&gt;&lt;P&gt;I tried your solution, but it's not working for me - I'm getting a protocol error 500 now.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's my two variables (I changed the variable names slightly):&lt;/P&gt;&lt;P&gt;&lt;FONT color="#800080"&gt;let vNPCookieRaw = Peek('Set-Cookie',0,'_response_header');&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#800080"&gt;let vNPCookie = TextBetween('$(vNPCookieRaw)','SameSite=None,','Path=/',2);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Here's the resulting text (from a trace):&lt;/P&gt;&lt;P&gt;&lt;FONT color="#3366FF"&gt;&lt;SPAN&gt;vNPCookie = 'NPWEBCONSOLE_SESSION=ac61db90490f70b1da9ae39b3c7f3d5ae4a0c6b7-%00NPWEBCONSOLE_XSRF-TOKEN%3AALEfIIvxiMe82JtSi3AUoe0ZU5dDKIjhP%2BLvCBr2qBc%3D%00%00_TS%3Asession%00%00userid%3Aad3f1e18086040a39f6b094fde386016%00%00userlogin%3A2020-03-28T17%3A02%3A09.1431719Z%00; '&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;DIV class="headline edc_error"&gt;The following error occurred:&lt;/DIV&gt;&lt;DIV class="edc_error"&gt;&lt;FONT color="#FF0000"&gt;HTTP protocol error 500 (Internal Server Error): An unhandled exception occurred; check the log for more information.&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="empty undefined"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="headline edc_error"&gt;&lt;FONT color="#FF0000"&gt;The error occurred here:&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="edc_error"&gt;&lt;FONT color="#FF0000"&gt;RestNPTaskTriggerTable: SQL SELECT "__KEY_data", "id", "task", "status" FROM JSON (wrap off) "data" PK "__KEY_data" WITH CONNECTION( URL "https://&amp;lt;masked&amp;gt;.&amp;lt;masked&amp;gt;.com:4993/api/v1/tasks/f407413e-93cd-49e6-9864-6602a0044528/executions", HTTPHEADER "cookie" "NPWEBCONSOLE_SESSION=e05a0f599c17e87bea77db6c73fac4994605847f-%00NPWEBCONSOLE_XSRF-TOKEN%3ASm%2FENNSoBUQVu0KE4zbt9ck1kPx%2BxfXypwZRtqzaQfo%3D%00%00_TS%3Asession%00%00userid%3Aad3f1e18086040a39f6b094fde386016%00%00userlogin%3A2020-03-28T16%3A56%3A45.8676365Z%00; ")&lt;/FONT&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any idea what I'm doing wrong?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 28 Mar 2020 17:04:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-NPrinting/NPrinting-Task-Execution-call-using-Rest-API-throwing-403/m-p/1688745#M28453</guid>
      <dc:creator>steverosebrook</dc:creator>
      <dc:date>2020-03-28T17:04:22Z</dc:date>
    </item>
    <item>
      <title>Re: NPrinting Task Execution call using Rest API throwing 403 Forbidden error</title>
      <link>https://community.qlik.com/t5/Qlik-NPrinting/NPrinting-Task-Execution-call-using-Rest-API-throwing-403/m-p/1688750#M28454</link>
      <description>&lt;P&gt;Wow, I feel dumb.&amp;nbsp; I realized that the NPrinting task I was trying to run had been disabled.&amp;nbsp; Once I enabled the task, the following code worked:&lt;/P&gt;&lt;P&gt;&lt;FONT color="#800080"&gt;let vNPCookieRaw = Peek('Set-Cookie',0,'_response_header');&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#800080"&gt;let vNPCookie = TextBetween('$(vNPCookieRaw)','SameSite=None,','Path=/',2);&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 28 Mar 2020 19:13:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-NPrinting/NPrinting-Task-Execution-call-using-Rest-API-throwing-403/m-p/1688750#M28454</guid>
      <dc:creator>steverosebrook</dc:creator>
      <dc:date>2020-03-28T19:13:10Z</dc:date>
    </item>
    <item>
      <title>Re: NPrinting Task Execution call using Rest API throwing 403 Forbidden error</title>
      <link>https://community.qlik.com/t5/Qlik-NPrinting/NPrinting-Task-Execution-call-using-Rest-API-throwing-403/m-p/1734049#M29672</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thanks for this info.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was trying your solution but it seems something else is going wrong. As you see in my raw session cookie&amp;nbsp;TextBetween('$(vCookieRaw)','SameSite=None,','Path=/',2) won't work as '&lt;SPAN&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;SameSite=None,&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;' only comes once in whole string.&lt;/P&gt;&lt;P&gt;Is my raw cookie wrong ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Raw Session Cookie: &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;"NPWEBCONSOLE_SESSION=7803373bd0a0e6a9ab3fb6a87e2fc8933aede485-%00_TS%3Asession%00%00NPWEBCONSOLE_XSRF-TOKEN%3AVK7fJ59JPWsnmn9vJ89JoCkxGeO8V1IHh0o3eccyc1w%3D%00; Path=/; HttpOnly; Secure; &lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;SameSite=None,&lt;/FONT&gt;&lt;/STRONG&gt;NPWEBCONSOLE_SESSION=5454317aee4bdce61ae0d9de0ad9399eef193fcc-%00_TS%3Asession%00%00NPWEBCONSOLE_XSRF-TOKEN%3AVK7fJ59JPWsnmn9vJ89JoCkxGeO8V1IHh0o3eccyc1w%3D%00%00userid%3A9f88adfb825a4eb19178e0dc2c4ca312%00%00userlogin%3A2020-08-07T10%3A16%3A15.1375265Z%00; &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;Path=/;&lt;/STRONG&gt;&lt;/FONT&gt; HttpOnly; Secure; SameSite=None" &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Truncated Session Cookie:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;"NPWEBCONSOLE_SESSION=5454317aee4bdce61ae0d9de0ad9399eef193fcc-%00_TS%3Asession%00%00NPWEBCONSOLE_XSRF-TOKEN%3AVK7fJ59JPWsnmn9vJ89JoCkxGeO8V1IHh0o3eccyc1w%3D%00%00userid%3A9f88adfb825a4eb19178e0dc2c4ca312%00%00userlogin%3A2020-08-07T10%3A16%3A15.1375265Z%00; "&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Aug 2020 10:22:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-NPrinting/NPrinting-Task-Execution-call-using-Rest-API-throwing-403/m-p/1734049#M29672</guid>
      <dc:creator>sajalgour2309</dc:creator>
      <dc:date>2020-08-07T10:22:15Z</dc:date>
    </item>
  </channel>
</rss>

