<?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: Error in exporting chart to Image or PDF using Qlik Sense API in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/2513010#M22011</link>
    <description>&lt;P&gt;Trying to do the same thing. Hoping you can help. What language is this please? Can this be done in C# .Net?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
    <pubDate>Thu, 03 Apr 2025 14:35:50 GMT</pubDate>
    <dc:creator>DBIT</dc:creator>
    <dc:date>2025-04-03T14:35:50Z</dc:date>
    <item>
      <title>Error in exporting chart to Image or PDF using Qlik Sense API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/1534184#M14512</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Hello Everyone,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;i am facing a issue in&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;November 2018&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;i am not able to export as&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;PDF or IMAGE&lt;/STRONG&gt;, but i am able to export the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;data to excel&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;i need to i&lt;STRONG&gt;mplement other export feature&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;as well it will be great if you and others can help me on this issue.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="exportPdf_exportImg_issue.PNG" style="width: 346px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/4360iCF19F6D898E4545B/image-size/large?v=v2&amp;amp;px=999" role="button" title="exportPdf_exportImg_issue.PNG" alt="exportPdf_exportImg_issue.PNG" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT size="5"&gt;Same error is coming for&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;IMG&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;also&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;My simple test code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;var prefix = window.location.pathname.substr(0, window.location.pathname.toLowerCase().lastIndexOf("/extensions") + 1);
var config = {
	host: window.location.hostname,
	prefix: prefix,
	port: window.location.port,
	isSecure: window.location.protocol === "https:"
};
require.config({
	baseUrl: (config.isSecure ? "https://" : "http://") + config.host + (config.port ? ":" + config.port : "") + config.prefix + "resources"
});
require(["js/qlik"], function(qlik) {
	qlik.setOnError(function(error) {
		$('#popupText').append(error.message + "&amp;lt;br&amp;gt;");
		$('#popup').fadeIn(1000);
	});
	$("#closePopup").click(function() {
		$('#popup').hide();
	});
	//callbacks -- inserted here --
	//open apps -- inserted here --
	var app = qlik.openApp('APP-ID', config);
	//get objects -- inserted here --
	// test
	app.getObject('QV01', 'OBJID').then(function(visual) {
		//console.log(visual);
		$("#exportChart").show().click(function() {
			//Working Good
			/*
			visual.exportData().then(function(result) {
				console.log('Data download link: ', result);
			});
			*/
			//Not Working IMG
			/*
				var Imgsettings = {
					imageType: 'png',
					height: 200,
					width: 300
				};
				visual.exportImg(Imgsettings).then(function(result) {
					console.log('Image download link: ', result);
				});
			*/
			//Not Working PDF
			var Pdfsettings = {
				documentSize: "A4",
				aspectRatio: 2,
				orientation: "landscape"
			};
			visual.exportPdf(Pdfsettings).then(function(result) {
				console.log('Pdf download link: ', result);
			});
			console.log("Exporting");
		});
	});
	//create cubes and lists -- inserted here --
});&lt;/PRE&gt;&lt;P&gt;&lt;SPAN&gt;Can some one help me on this &amp;amp;&amp;nbsp; please if i am wrong please explain me what was wrong.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Regards,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Ajay Kakkar&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 06:46:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/1534184#M14512</guid>
      <dc:creator>ajaykakkar93</dc:creator>
      <dc:date>2024-11-16T06:46:37Z</dc:date>
    </item>
    <item>
      <title>Re: Error in exporting chart to Image or PDF using Qlik Sense API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/1535155#M14513</link>
      <description>&lt;P&gt;I am facing the&amp;nbsp;same issue.&lt;/P&gt;&lt;P&gt;Thanks Ajay for Explaining it in plenty of details.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can anyone help with this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jan 2019 13:35:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/1535155#M14513</guid>
      <dc:creator>gamaltawaf</dc:creator>
      <dc:date>2019-01-25T13:35:21Z</dc:date>
    </item>
    <item>
      <title>Re: Error in exporting chart to Image or PDF using Qlik Sense API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/1535254#M14514</link>
      <description>&lt;P&gt;Hello Ajay,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;I found a solution for this. So the issue is you need to ask the visulatisation api to get the object take a look at code below.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;var app = qlik.openApp('app-id');
app.visualization.get('object-id').then( function(vis) { 
   vis.exportPdf().then(function (result) {
        console.log('PDF download link: ', result);
    }); 
});&lt;/PRE&gt;</description>
      <pubDate>Fri, 25 Jan 2019 15:22:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/1535254#M14514</guid>
      <dc:creator>gamaltawaf</dc:creator>
      <dc:date>2019-01-25T15:22:46Z</dc:date>
    </item>
    <item>
      <title>Re: Error in exporting chart to Image or PDF using Qlik Sense API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/1536324#M14515</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1221.PNG" style="width: 538px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/4674i416294A0EE960E9A/image-size/large?v=v2&amp;amp;px=999" role="button" title="1221.PNG" alt="1221.PNG" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="512.PNG" style="width: 761px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/4675iF993F92162132023/image-size/large?v=v2&amp;amp;px=999" role="button" title="512.PNG" alt="512.PNG" /&gt;&lt;/span&gt;&lt;BR /&gt;Still getting this error&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jan 2019 07:17:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/1536324#M14515</guid>
      <dc:creator>ajaykakkar93</dc:creator>
      <dc:date>2019-01-29T07:17:20Z</dc:date>
    </item>
    <item>
      <title>Re: Error in exporting chart to Image or PDF using Qlik Sense API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/1536570#M14517</link>
      <description>&lt;P&gt;This seems to have to do with your access origin.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry, I can't help with that.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jan 2019 14:43:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/1536570#M14517</guid>
      <dc:creator>gamaltawaf</dc:creator>
      <dc:date>2019-01-29T14:43:30Z</dc:date>
    </item>
    <item>
      <title>Re: Error in exporting chart to Image or PDF using Qlik Sense API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/1802799#M14820</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I do manage to get a PDF export link, but the URL is not accessible.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;app.visualization.get('aYtxmq').then(function(vis){
  vis.exportPdf().then(function (result) {
    console.log('Image download link: ', result);
  });
});&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This results in&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Image download link:  https://my-qlik.website.com:443/openproxy/tempcontent/50481ec5-4c17-4d53-ac36-6f7dfbc68b4f/fd6e31961187425bbb3bc3648e4988f6.pdf?serverNodeId=8372dd45-3070-4263-ad62-ca1926459c18&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But when I open that URL I simply get the message&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;The requested resource cannot be found.&lt;/P&gt;&lt;P&gt;Any idea what might be going wrong?&lt;/P&gt;&lt;P&gt;Please note that "&lt;A href="https://my-reports.website.com:443/openproxy&amp;quot;" target="_blank" rel="noopener"&gt;https://my-qlik.website.com:443/openproxy"&lt;/A&gt;&amp;nbsp;does indeed work and 'openproxy' is a virtual proxy set up with anonymous access that functions correctly.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Apr 2021 10:27:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/1802799#M14820</guid>
      <dc:creator>lambdaman</dc:creator>
      <dc:date>2021-04-27T10:27:04Z</dc:date>
    </item>
    <item>
      <title>Re: Error in exporting chart to Image or PDF using Qlik Sense API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/2513010#M22011</link>
      <description>&lt;P&gt;Trying to do the same thing. Hoping you can help. What language is this please? Can this be done in C# .Net?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Apr 2025 14:35:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/2513010#M22011</guid>
      <dc:creator>DBIT</dc:creator>
      <dc:date>2025-04-03T14:35:50Z</dc:date>
    </item>
    <item>
      <title>Re: Error in exporting chart to Image or PDF using Qlik Sense API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/2513134#M22013</link>
      <description>&lt;P&gt;Do you want to export to a PDF? Is it for cloud or a client managed solution? There's an example for how to do that for QCS in C# here:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/kolsrud/qlik_rest_sdk/blob/master/Qlik.Sense.RestClient/ExamplesQcs/ExportPdf/Program.cs" target="_blank"&gt;https://github.com/kolsrud/qlik_rest_sdk/blob/master/Qlik.Sense.RestClient/ExamplesQcs/ExportPdf/Program.cs&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;The library is available on NuGet:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.nuget.org/packages/QlikSenseRestClient/" target="_blank"&gt;https://www.nuget.org/packages/QlikSenseRestClient/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Apr 2025 10:28:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/2513134#M22013</guid>
      <dc:creator>Øystein_Kolsrud</dc:creator>
      <dc:date>2025-04-04T10:28:36Z</dc:date>
    </item>
    <item>
      <title>Re: Error in exporting chart to Image or PDF using Qlik Sense API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/2513172#M22018</link>
      <description>&lt;P&gt;I will have a look at this thanks!&lt;/P&gt;&lt;P&gt;We have Qliksense Enterprise, so client. PDF may work but ideally PNG anything that can be used in a report. Is this possible in C# as a PNG or JPG? I have seen others say they have done it but no code examples or descriptions of how.&lt;BR /&gt;&lt;BR /&gt;Thanks again!&lt;/P&gt;</description>
      <pubDate>Sun, 06 Apr 2025 00:13:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/2513172#M22018</guid>
      <dc:creator>DBIT</dc:creator>
      <dc:date>2025-04-06T00:13:53Z</dc:date>
    </item>
    <item>
      <title>Re: Error in exporting chart to Image or PDF using Qlik Sense API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/2513264#M22022</link>
      <description>&lt;P&gt;Tried using this method and I'm getting a response saying "403: The initial authentication request must be a &amp;amp;quot;GET&amp;amp;quot; request in order to be redirected to the authentication module."&lt;BR /&gt;&lt;BR /&gt;Bit stumped.&lt;/P&gt;</description>
      <pubDate>Sun, 06 Apr 2025 17:17:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/2513264#M22022</guid>
      <dc:creator>DBIT</dc:creator>
      <dc:date>2025-04-06T17:17:23Z</dc:date>
    </item>
    <item>
      <title>Re: Error in exporting chart to Image or PDF using Qlik Sense API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/2513321#M22027</link>
      <description>&lt;P&gt;When you are not authenticated, only GET requests are accepted. They will redirect you to the right authentication flow and after successful authentication you valid get a valid cookie. Once you have that, you can do other request. The QlikSenseRestClient library should do that automatically though. Maybe you can share your code and I can have a look at what goes wrong? If you are calling the printing service, then it might be that you simply need to call the qrs service with a GET request first. You could try adding something like this:&lt;/P&gt;
&lt;PRE&gt;client.Get("/qrs/about");&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Apr 2025 09:25:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/2513321#M22027</guid>
      <dc:creator>Øystein_Kolsrud</dc:creator>
      <dc:date>2025-04-07T09:25:38Z</dc:date>
    </item>
    <item>
      <title>Re: Error in exporting chart to Image or PDF using Qlik Sense API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/2513481#M22037</link>
      <description>&lt;LI-CODE lang="csharp"&gt;var baseAddress = new Uri("https://&amp;lt;senseserverURL&amp;gt;/qrs/about");
var cookieContainer = new CookieContainer();
using (var handler = new HttpClientHandler() {
UseCookies = true,
AllowAutoRedirect = true,
CookieContainer = cookieContainer
})

using (var client = new HttpClient(handler) { BaseAddress = baseAddress})
{
X509Certificate2 Cert = new X509Certificate2("C:\\client.pfx");

client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
client.DefaultRequestHeaders.Add("User-Agent", "Windows");
client.DefaultRequestHeaders.Add("X-Qlik-User", @"UserDirectory=internal;UserId=sa_repository");
client.DefaultRequestHeaders.Add("X-Qlik-xrfkey", xrfkey);

handler.ClientCertificates.Add(SenseCert);

var getResult = await client.GetAsync(baseAddress);&lt;/LI-CODE&gt;&lt;P&gt;Now using the HTTPClient in c# instead.&lt;BR /&gt;&lt;BR /&gt;I have replaced the actual server URL with&amp;nbsp;&amp;lt;senseserverURL&amp;gt; for security.&lt;BR /&gt;&lt;BR /&gt;Currently getting a 401: unauthorised response back from the server.&lt;BR /&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Apr 2025 10:26:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/2513481#M22037</guid>
      <dc:creator>DBIT</dc:creator>
      <dc:date>2025-04-08T10:26:03Z</dc:date>
    </item>
    <item>
      <title>Re: Error in exporting chart to Image or PDF using Qlik Sense API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/2513490#M22038</link>
      <description>&lt;P&gt;Getting all those headers and everything right is quite hard when you use the HttpClient class directly. And since you are doing a direct connection using certificates, you should specify the port for the repository which is 4242.&lt;/P&gt;
&lt;P&gt;I'd really recommend you try out some library to do this for you though. That way you don't have to worry about all the nitty gritty details of the authentication flow which can be quite convoluted. With the QlikSenseRestClient library your code would look like this:&lt;/P&gt;
&lt;PRE&gt;var client = new RestClient("https://&amp;lt;senseserverURL&amp;gt;/");&lt;BR /&gt;var certs = RestClient.LoadCertificateFromDirectory("C:\\client.pfx");&lt;BR /&gt;client.AsDirectConnection("internal", "sa_repository", certificateCollection: certs);&lt;BR /&gt;&lt;BR /&gt;var getResult = await client.GetAsync("/qrs/about");&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Apr 2025 10:53:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/2513490#M22038</guid>
      <dc:creator>Øystein_Kolsrud</dc:creator>
      <dc:date>2025-04-08T10:53:16Z</dc:date>
    </item>
    <item>
      <title>Re: Error in exporting chart to Image or PDF using Qlik Sense API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/2513710#M22043</link>
      <description>&lt;P&gt;Great. How can I add a custom header to a rest client object using this? Seems to be the only thing not provided for in examples?&lt;/P&gt;</description>
      <pubDate>Wed, 09 Apr 2025 14:25:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/2513710#M22043</guid>
      <dc:creator>DBIT</dc:creator>
      <dc:date>2025-04-09T14:25:11Z</dc:date>
    </item>
    <item>
      <title>Re: Error in exporting chart to Image or PDF using Qlik Sense API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/2513814#M22046</link>
      <description>&lt;P&gt;You should be able to do like this:&lt;/P&gt;
&lt;PRE&gt;client.CustomHeaders["myheader"] = "value";&lt;/PRE&gt;
&lt;P&gt;But what do you need a custom header for? Just curious.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Apr 2025 10:46:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/2513814#M22046</guid>
      <dc:creator>Øystein_Kolsrud</dc:creator>
      <dc:date>2025-04-10T10:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: Error in exporting chart to Image or PDF using Qlik Sense API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/2513818#M22047</link>
      <description>&lt;P&gt;That's great thanks! It's been a while since I did any C# so I'm more than a bit rusty. I don't really recall assigning values this way.&lt;/P&gt;&lt;P&gt;Why do I need to? The API I'm interacting with requires additional headers as above. I can't work out how to get them in any other way. I have been able to establish a connection with POSTMAN but was getting the same error as my C# program without the headers being added, so this should hopefully resolve the issue!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you again for the help and direction.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Apr 2025 11:05:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/2513818#M22047</guid>
      <dc:creator>DBIT</dc:creator>
      <dc:date>2025-04-10T11:05:06Z</dc:date>
    </item>
    <item>
      <title>Re: Error in exporting chart to Image or PDF using Qlik Sense API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/2513827#M22048</link>
      <description>&lt;P&gt;I'm not sure what you mean here. How would you have preferred to set the header?&lt;/P&gt;
&lt;P&gt;Or do you mean the language construct used? The CustomHeader property is a dictionary. So it's assigning a value in the dictionary.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Apr 2025 11:42:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/2513827#M22048</guid>
      <dc:creator>Øystein_Kolsrud</dc:creator>
      <dc:date>2025-04-10T11:42:19Z</dc:date>
    </item>
    <item>
      <title>Re: Error in exporting chart to Image or PDF using Qlik Sense API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/2513838#M22049</link>
      <description>&lt;P&gt;Yes. Only real compiled language I have worked with in the last decade is objective C, and a little Java. Still getting used to C# again.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Apr 2025 12:13:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/2513838#M22049</guid>
      <dc:creator>DBIT</dc:creator>
      <dc:date>2025-04-10T12:13:53Z</dc:date>
    </item>
    <item>
      <title>Re: Error in exporting chart to Image or PDF using Qlik Sense API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/2514027#M22053</link>
      <description>&lt;P&gt;After scratching my head, getting 405 errors (method not allowed) from server when requesting export of the PDF after finally getting this together, it seems this only works for Qlik Cloud? I'm interacting with Enterprise installed on an on premises server, so seems like I've been going down the wrong rabbit hole.&lt;/P&gt;&lt;P&gt;Do you know any way to interact with the Enterprise APIs in a similar way? I'd have thought the APIs would have been fairly close in terms of functionality across the board being extremely similar products but apparently not.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Apr 2025 13:23:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/2514027#M22053</guid>
      <dc:creator>DBIT</dc:creator>
      <dc:date>2025-04-11T13:23:05Z</dc:date>
    </item>
    <item>
      <title>Re: Error in exporting chart to Image or PDF using Qlik Sense API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/2514105#M22054</link>
      <description>&lt;P&gt;You mean that library? Or the APIs for printing? The library handles both Client Managed and QCS. You can find examples for both in the repo for that library:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/kolsrud/qlik_rest_sdk/tree/master/Qlik.Sense.RestClient" target="_blank"&gt;https://github.com/kolsrud/qlik_rest_sdk/tree/master/Qlik.Sense.RestClient&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Printing is handled very differently in the two though, so the flow for exporting a PDF will require usage of two totally different sets of APIs. The APIs for doing this in Client Managed are not public.&lt;/P&gt;</description>
      <pubDate>Sat, 12 Apr 2025 09:11:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Error-in-exporting-chart-to-Image-or-PDF-using-Qlik-Sense-API/m-p/2514105#M22054</guid>
      <dc:creator>Øystein_Kolsrud</dc:creator>
      <dc:date>2025-04-12T09:11:07Z</dc:date>
    </item>
  </channel>
</rss>

