<?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 Qlik Sense Facebook Connector Real-Time Data in Connectivity &amp; Data Prep</title>
    <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-Facebook-Connector-Real-Time-Data/m-p/87809#M6252</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Dear Qlik Community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;I hope this finds you well. I have a query regarding the facebook insights connector. Using the connector seems to be quite straightforward and I have made a demo app using it. How can I make the app real-time?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;In the connector page it asks to set a start date and end date for every table. I would prefer not to have to re-do that every time. Is it possible to put the end date as 2030 or some other time in the future so that When I click 'load data' in the app I will keep getting up to date data rather than having to re-set the start and end date?&amp;nbsp; (I also plan to include twitter and google analytics data to this app and also noticed that the same start/end date applies in the web connector). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Any suggestions or solutions would be much appreciated. Thank you for your support! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Best,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Mohammed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 Apr 2021 07:46:07 GMT</pubDate>
    <dc:creator>malradi88</dc:creator>
    <dc:date>2021-04-02T07:46:07Z</dc:date>
    <item>
      <title>Qlik Sense Facebook Connector Real-Time Data</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-Facebook-Connector-Real-Time-Data/m-p/87809#M6252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Dear Qlik Community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;I hope this finds you well. I have a query regarding the facebook insights connector. Using the connector seems to be quite straightforward and I have made a demo app using it. How can I make the app real-time?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;In the connector page it asks to set a start date and end date for every table. I would prefer not to have to re-do that every time. Is it possible to put the end date as 2030 or some other time in the future so that When I click 'load data' in the app I will keep getting up to date data rather than having to re-set the start and end date?&amp;nbsp; (I also plan to include twitter and google analytics data to this app and also noticed that the same start/end date applies in the web connector). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Any suggestions or solutions would be much appreciated. Thank you for your support! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Best,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Mohammed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Apr 2021 07:46:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-Facebook-Connector-Real-Time-Data/m-p/87809#M6252</guid>
      <dc:creator>malradi88</dc:creator>
      <dc:date>2021-04-02T07:46:07Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense Facebook Connector Real-Time Data</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-Facebook-Connector-Real-Time-Data/m-p/87810#M6253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You can replace the hard-coded dates in the load statement with variables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;At the start of your script, define the dates to be variables based on today, so for example to get the previous 90 days you could have something like:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let vStartDate = date(today()- 91,'YYYY-MM-DD'); //the date 90 days from yesterday&lt;/P&gt;&lt;P&gt;Let vEndDate = date(today()- 1,'YYYY-MM-DD');//yesterday's date&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, whereas &lt;SPAN style="font-size: 13.3333px;"&gt;in your load script you'll see something hardcoded like &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;startDate=01-07-2018 and endDate=29-10-2018.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;instead refer to the variables, so...&lt;/P&gt;&lt;P&gt;startDate=$(vStartDate) and endDate=$(vEndDate)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Replacing the parameter values with variables is a powerful way of using the connectors.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Darren&lt;/P&gt;&lt;P&gt;Lead Product Designer for Qlik Web Connectors&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Oct 2018 15:49:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-Facebook-Connector-Real-Time-Data/m-p/87810#M6253</guid>
      <dc:creator>Darren_Ball</dc:creator>
      <dc:date>2018-10-30T15:49:13Z</dc:date>
    </item>
  </channel>
</rss>

