<?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 Connect API in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/Error-Connect-API/m-p/134260#M1927</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well what you see as form data in Postman is not query parameters... they are the post body and can be put into the Qlik REST Connector as such - then it should work well.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 Aug 2018 21:24:15 GMT</pubDate>
    <dc:creator>petter</dc:creator>
    <dc:date>2018-08-14T21:24:15Z</dc:date>
    <item>
      <title>Error Connect API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Error-Connect-API/m-p/134257#M1924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good morning people,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has anyone ever been in a situation like this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are trying to connect to a prospect client, however we need to extract the data from an API to work on Qlik, so we think about the REST connection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The "client" passed us the connection URL, informed that the method is POST and we have to use 3 parameters:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;• Token: which is a string of characters, used for validation&lt;/P&gt;&lt;P&gt;• Initial date&lt;/P&gt;&lt;P&gt;• Final date&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We tried to make the connection via REST, but to no avail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If we put these infos that they passed us in the fields of Query Parameters&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="query.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/210683_query.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gives server error not found ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="erro_test.png" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/210684_erro_test.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And if I leave without this information, it connects, but gives the error of missing parameters:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="sucesso.png" class="jive-image image-3" src="https://community.qlik.com/legacyfs/online/210685_sucesso.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="falta parametros.png" class="image-4 jive-image" src="/legacyfs/online/210686_falta parametros.png" style="height: 139px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;According to the IT of this client, our request is arriving as a string, and should not, since the parameters have to arrive separate in the POST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We tested the connection via Postman software, and it worked correctly, ie it is some Qlik config or syntax.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has anyone seen this before? Do you know if Qlik can solve it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some people have commented to me that I need an intermediate extractor, in Python, PHP, for example, to connect to the API, generate files, and then consume with Qlik, if this makes my project unfeasible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance for the strength&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hugs !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2018 14:51:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Error-Connect-API/m-p/134257#M1924</guid>
      <dc:creator>vinisefrin</dc:creator>
      <dc:date>2018-08-13T14:51:38Z</dc:date>
    </item>
    <item>
      <title>Re: Error Connect API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Error-Connect-API/m-p/134258#M1925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Parameters from a POST request could be sent in any combination "Query Parameters", "Post Body" and "Query Headers"... So it is up to the specific API to define what is the right thing for the API endpoint that you are using. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IT told you that you have to put them in the POST body. This is not separate from the POST request but a part of the POST request. So make sure that you select in the Qlik REST Connector properties that the "Method" should be POST and not GET which is the default. Then you will get an input box underneath to fill in the POST body. How you put the parameters into the POST body depends on the API so you should have gotten that information already. It is in some sort of text format that could be like this maybe:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Token=asdklfjasdlfkjasdfldkjasdflfj&lt;/P&gt;&lt;P&gt;d1=xxxxxx&lt;/P&gt;&lt;P&gt;d2=yyyyyy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Again look at the documentation to determine the formatting of the text...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Qlik REST Connector should be perfectly capable to solve this... &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2018 15:19:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Error-Connect-API/m-p/134258#M1925</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2018-08-13T15:19:24Z</dc:date>
    </item>
    <item>
      <title>Re: Error Connect API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Error-Connect-API/m-p/134259#M1926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good morning, Petter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what intrigues us is that via Postman the connection goes normally, only with the normal parameters ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="postman_ok.jpg" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/210797_postman_ok.jpg" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Via REST, we try with countless possibilities, all without success.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2018 12:14:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Error-Connect-API/m-p/134259#M1926</guid>
      <dc:creator>vinisefrin</dc:creator>
      <dc:date>2018-08-14T12:14:15Z</dc:date>
    </item>
    <item>
      <title>Re: Error Connect API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Error-Connect-API/m-p/134260#M1927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well what you see as form data in Postman is not query parameters... they are the post body and can be put into the Qlik REST Connector as such - then it should work well.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2018 21:24:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Error-Connect-API/m-p/134260#M1927</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2018-08-14T21:24:15Z</dc:date>
    </item>
    <item>
      <title>Re: Error Connect API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Error-Connect-API/m-p/134261#M1928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the feedback Petter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm doing this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Screenshot_1.jpg" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/210930_Screenshot_1.jpg" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Screenshot_2.jpg" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/210931_Screenshot_2.jpg" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and yet it will not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;very strange.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Aug 2018 14:20:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Error-Connect-API/m-p/134261#M1928</guid>
      <dc:creator>vinisefrin</dc:creator>
      <dc:date>2018-08-15T14:20:20Z</dc:date>
    </item>
    <item>
      <title>Re: Error Connect API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Error-Connect-API/m-p/134262#M1929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Petter, we were able to make the connection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we sat down together with the client, and had to make some adjustments to their API.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now all right.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thank you for the strength&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Aug 2018 18:44:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Error-Connect-API/m-p/134262#M1929</guid>
      <dc:creator>vinisefrin</dc:creator>
      <dc:date>2018-08-15T18:44:13Z</dc:date>
    </item>
  </channel>
</rss>

