<?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: extraction of data in SAS Data Science</title>
    <link>https://communities.sas.com/t5/SAS-Data-Science/extraction-of-data/m-p/536407#M9991</link>
    <description>&lt;P&gt;Your link does not work, I get a "Oops" message".&lt;/P&gt;
&lt;P&gt;The link is resolved to "&lt;A href="https://trends.google.com/trends/explore?q=citi%20bank%20fake%20accounts&amp;amp;geo=US%22%C2%A0" target="_blank"&gt;https://trends.google.com/trends/explore?q=citi%20bank%20fake%20accounts&amp;amp;geo=US%22%C2%A0&lt;/A&gt;" by the browser.&lt;/P&gt;</description>
    <pubDate>Mon, 18 Feb 2019 09:31:37 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2019-02-18T09:31:37Z</dc:date>
    <item>
      <title>extraction of data</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/extraction-of-data/m-p/536405#M9990</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to extract data from this website "&amp;nbsp;&lt;A href="https://trends.google.com/trends/explore?q=wells%20fargo%20fake%20account&amp;amp;geo=US" target="_blank"&gt;https://trends.google.com/trends/explore?q=wells%20fargo%20fake%20account&amp;amp;geo=US&lt;/A&gt; "&lt;/P&gt;&lt;P&gt;It's a google trend website.&lt;/P&gt;&lt;P&gt;can anyone help me with this. I am very much new to this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note: not through downloading the csv file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in Advance&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Feb 2019 09:36:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/extraction-of-data/m-p/536405#M9990</guid>
      <dc:creator>sanjus</dc:creator>
      <dc:date>2019-02-18T09:36:22Z</dc:date>
    </item>
    <item>
      <title>Re: extraction of data</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/extraction-of-data/m-p/536407#M9991</link>
      <description>&lt;P&gt;Your link does not work, I get a "Oops" message".&lt;/P&gt;
&lt;P&gt;The link is resolved to "&lt;A href="https://trends.google.com/trends/explore?q=citi%20bank%20fake%20accounts&amp;amp;geo=US%22%C2%A0" target="_blank"&gt;https://trends.google.com/trends/explore?q=citi%20bank%20fake%20accounts&amp;amp;geo=US%22%C2%A0&lt;/A&gt;" by the browser.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Feb 2019 09:31:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/extraction-of-data/m-p/536407#M9991</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-02-18T09:31:37Z</dc:date>
    </item>
    <item>
      <title>Re: extraction of data</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/extraction-of-data/m-p/536414#M9992</link>
      <description>&lt;P&gt;sorry for the link&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;please try this link "&lt;A href="https://trends.google.com/trends/explore?q=wells%20fargo%20fake%20account&amp;amp;geo=US" target="_blank"&gt;https://trends.google.com/trends/explore?q=wells%20fargo%20fake%20account&amp;amp;geo=US&lt;/A&gt;"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;</description>
      <pubDate>Mon, 18 Feb 2019 09:34:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/extraction-of-data/m-p/536414#M9992</guid>
      <dc:creator>sanjus</dc:creator>
      <dc:date>2019-02-18T09:34:58Z</dc:date>
    </item>
    <item>
      <title>Re: extraction of data</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/extraction-of-data/m-p/536437#M9993</link>
      <description>&lt;P&gt;Try this code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename http_out temp;

proc http
  url="https://trends.google.com/trends/explore?q=wells%20fargo%20fake%20account&amp;amp;geo=US"
  method="get"
  out=http_out
;
run;

data response;
infile http_out truncover;
input line $100.;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;and look if SAS retrieves the web page. If yes, look at the resulting dataset (you may have to increase the size of line and the lrecl of the infile) to see if your data is in there.&lt;/P&gt;
&lt;P&gt;If you are able to find the part that creates the CSV download URL, you might be off best to use that and read the csv file.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Feb 2019 11:26:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/extraction-of-data/m-p/536437#M9993</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-02-18T11:26:55Z</dc:date>
    </item>
    <item>
      <title>Re: extraction of data</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/extraction-of-data/m-p/536456#M9994</link>
      <description>&lt;P&gt;getting error :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the log:&lt;/P&gt;&lt;P&gt;filename http_out temp;&lt;/P&gt;&lt;P&gt;2531&lt;/P&gt;&lt;P&gt;2532 proc http&lt;/P&gt;&lt;P&gt;2533 url="&lt;A href="https://trends.google.com/trends/explore?q=wells%20fargo%20fake%20account&amp;amp;geo=US" target="_blank" rel="noopener"&gt;https://trends.google.com/trends/explore?q=wells%20fargo%20fake%20account&amp;amp;geo=US&lt;/A&gt;"&lt;/P&gt;&lt;P&gt;WARNING: Apparent symbolic reference GEO not resolved.&lt;/P&gt;&lt;P&gt;2534 method="get"&lt;/P&gt;&lt;P&gt;2535 out=http_out&lt;/P&gt;&lt;P&gt;2536 ;&lt;/P&gt;&lt;P&gt;2537 run;&lt;/P&gt;&lt;P&gt;ERROR: Windows SSL error -2146893048 (0x80090308) occurred at line 2389, the error message is&lt;/P&gt;&lt;P&gt;"The token supplied to the function is invalid "&lt;/P&gt;&lt;P&gt;ERROR: Secure communications error status 807ff008 description "Windows SSL error -2146893048&lt;/P&gt;&lt;P&gt;(0x80090308) occurred at line 2389, the error message is "The token supplied to the&lt;/P&gt;&lt;P&gt;function is invalid ""&lt;/P&gt;&lt;P&gt;ERROR: Encryption run-time execution error&lt;/P&gt;&lt;P&gt;ERROR: Windows SSL error -2146893048 (0x80090308) occurred at line 2389, the error message is&lt;/P&gt;&lt;P&gt;"The token supplied to the function is invalid "&lt;/P&gt;&lt;P&gt;ERROR: Secure communications error status 807ff008 description "Windows SSL error -2146893048&lt;/P&gt;&lt;P&gt;(0x80090308) occurred at line 2389, the error message is "The token supplied to the&lt;/P&gt;&lt;P&gt;function is invalid ""&lt;/P&gt;&lt;P&gt;ERROR: Encryption run-time execution error&lt;/P&gt;&lt;P&gt;ERROR: Call to tcpSockContinueSSL failed.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE HTTP used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.23 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.06 seconds&lt;/P&gt;</description>
      <pubDate>Mon, 18 Feb 2019 12:47:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/extraction-of-data/m-p/536456#M9994</guid>
      <dc:creator>sanjus</dc:creator>
      <dc:date>2019-02-18T12:47:41Z</dc:date>
    </item>
  </channel>
</rss>

