<?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: Rest API Proc HTTP failing in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Rest-API-Proc-HTTP-failing/m-p/624073#M20057</link>
    <description>&lt;P&gt;The code as posted by&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13868"&gt;@AhmedAl_Attar&lt;/a&gt;&amp;nbsp;works for me.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you get a timeout executing this code 1:1 then eventually you've got a firewall blocking the new URL.&lt;/P&gt;</description>
    <pubDate>Wed, 12 Feb 2020 03:00:16 GMT</pubDate>
    <dc:creator>Patrick</dc:creator>
    <dc:date>2020-02-12T03:00:16Z</dc:date>
    <item>
      <title>Rest API Proc HTTP failing</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Rest-API-Proc-HTTP-failing/m-p/623843#M20012</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I recently used the following program to access and import consumer complaints data from the CFPB within Enterprise Guide for monthly risk intelligence mainly focusing on benchmarking against our peers. I would run the following simple Rest API Get Method to obtain the consumer complaints data (token is included but i'm not sure if its still needed):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;FONT&gt;FILENAME CFPB TEMP;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT&gt;PROC HTTP URL="&lt;A href="http://data.consumerfinance.gov/resource/s6ew-h6mp.json?$limit=5000000&amp;amp;$$app_token=jtrWrMFsEDzDvgoytvoENku1Z" target="_blank" rel="noopener"&gt;http://data.consumerfinance.gov/resource/s6ew-h6mp.json?$limit=5000000&amp;amp;$$app_token=jtrWrMFsEDzDvgoytvoENku1Z&lt;/A&gt;"&lt;BR /&gt;METHOD="GET"&lt;BR /&gt;OUT=CFPB;&lt;BR /&gt;RUN;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT&gt;LIBNAME POSTS JSON FILEREF=CFPB;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT&gt;PROC SQL;&lt;BR /&gt;CREATE TABLE WORK._01_EXT_COMPLAINTS AS&lt;BR /&gt;SELECT T1.*&lt;BR /&gt;FROM POSTS.ROOT T1;&lt;BR /&gt;QUIT;&lt;BR /&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The CFPB recently updated their API protocols and much of their site and now list the following link:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.consumerfinance.gov/data-research/consumer-complaints/search/api/v1/" target="_blank" rel="noopener"&gt;https://www.consumerfinance.gov/data-research/consumer-complaints/search/api/v1/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The CFPB also provides a method to test searches (GET statements) from their GitHub page:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://cfpb.github.io/api/ccdb/api/index.html#/Complaints/get_" target="_blank" rel="noopener"&gt;https://cfpb.github.io/api/ccdb/api/index.html#/Complaints/get_&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I ran a couple of successful tests to see if a response occurred and it produced the following curl statement on a couple of tests of displaying non-aggregating data as well as ascending by the creation date:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;curl -X GET "&lt;A href="https://www.consumerfinance.gov/data-research/consumer-complaints/search/api/v1/?sort=created_date_desc&amp;amp;no_aggs=true" target="_blank" rel="noopener"&gt;https://www.consumerfinance.gov/data-research/consumer-complaints/search/api/v1/?sort=created_date_d...&lt;/A&gt;" -H "accept: application/json"&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.consumerfinance.gov/data-research/consumer-complaints/search/api/v1/?sort=created_date_desc&amp;amp;no_aggs=true" target="_blank" rel="noopener"&gt;https://www.consumerfinance.gov/data-research/consumer-complaints/search/api/v1/?sort=created_date_d...&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I try to download the file using the previous PROC HTTP statement but replacing it with the following URL path:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;filename cfpb temp;&lt;/P&gt;&lt;P&gt;/* Neat service from Open Notify project */&lt;BR /&gt;proc http&lt;BR /&gt;&amp;nbsp;url="&lt;A href="https://www.consumerfinance.gov/data-research/consumer-complaints/search/api/v1/" target="_blank" rel="noopener"&gt;https://www.consumerfinance.gov/data-research/consumer-complaints/search/api/v1/&lt;/A&gt;"&lt;BR /&gt;&amp;nbsp;method= "GET"&lt;BR /&gt;&amp;nbsp;out=cfpb;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;libname space JSON fileref=cfpb;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;PROC SQL;&lt;BR /&gt;CREATE TABLE WORK._01_EXT_COMPLAINTS_S AS&lt;BR /&gt;SELECT T1.*&lt;BR /&gt;FROM POSTS.ROOT T1;&lt;BR /&gt;QUIT;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I get the following timeout errors:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ERROR: Error connecting to 23.5.233.75:443. (The connection has timed out.)&lt;BR /&gt;ERROR: Unable to establish connection to &lt;A href="http://www.consumerfinance.gov/" target="_blank" rel="noopener"&gt;www.consumerfinance.gov&lt;/A&gt;.&lt;BR /&gt;ERROR: Unable to connect to Web server.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I feel like i am missing a few things but i'm definitely a rookie in this space so any assistance/guidance would be most beneficial.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank You,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Elvis Kanlic&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Feb 2020 13:54:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Rest-API-Proc-HTTP-failing/m-p/623843#M20012</guid>
      <dc:creator>ElvisK</dc:creator>
      <dc:date>2020-02-11T13:54:52Z</dc:date>
    </item>
    <item>
      <title>Re: Rest API Proc HTTP failing</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Rest-API-Proc-HTTP-failing/m-p/623884#M20019</link>
      <description>&lt;P&gt;Try this,&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
filename req url 'https://www.consumerfinance.gov/data-research/consumer-complaints/search/api/v1/?sort=created_date_desc&amp;amp;no_aggs=true' debug lrecl=8192;
LIBNAME resp JSON fileref=req;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;From the looks of it, the json response is being put one single stream of characters, without any new line separators&lt;/P&gt;
&lt;P&gt;But the &lt;A href="https://blogs.sas.com/content/sasdummy/2016/12/02/json-libname-engine-sas/" target="_self"&gt;JSON Library engine&lt;/A&gt; can parse the JSON response into separate JSON objects within.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope&amp;nbsp; this helps,&lt;/P&gt;
&lt;P&gt;Ahmed&lt;/P&gt;</description>
      <pubDate>Tue, 11 Feb 2020 15:26:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Rest-API-Proc-HTTP-failing/m-p/623884#M20019</guid>
      <dc:creator>AhmedAl_Attar</dc:creator>
      <dc:date>2020-02-11T15:26:25Z</dc:date>
    </item>
    <item>
      <title>Re: Rest API Proc HTTP failing</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Rest-API-Proc-HTTP-failing/m-p/624070#M20056</link>
      <description>&lt;P&gt;Thank you Ahmed for the quick response. Unfortunately I am getting the following error message:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;ERROR: The connection has timed out..&lt;BR /&gt;ERROR: Error in the LIBNAME statement.&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;I thought maybe it had to due to the size of the file so I tried to create a subset by leveraging the query from the CFPB to gather only defects from 01/01/2020 to 01/31/2020 and still get the same error.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;Here is the original link that I created from the CFPB's query for January 2020 complaints:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.consumerfinance.gov/data-research/consumer-complaints/search/api/v1/?date_received_max=2020-01-31&amp;amp;date_received_min=2020-01-01&amp;amp;field=all&amp;amp;format=json&amp;amp;no_aggs=true&amp;amp;queryString=%3Fdate_received_max%3D2020-01-31%26date_received_min%3D2020-01-01%26field%3Dall%26size%3D25%26sort%3Dcreated_date_desc&amp;amp;size=23914&amp;amp;sort=created_date_desc" target="_blank" rel="noopener"&gt;https://www.consumerfinance.gov/data-research/consumer-complaints/search/api/v1/?date_received_max=2020-01-31&amp;amp;date_received_min=2020-01-01&amp;amp;field=all&amp;amp;format=json&amp;amp;no_aggs=true&amp;amp;queryString=%3Fdate_received_max%3D2020-01-31%26date_received_min%3D2020-01-01%26field%3Dall%26size%3D25%26sort%3Dcreated_date_desc&amp;amp;size=23914&amp;amp;sort=created_date_desc&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And I modified your code to include January only defects:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;filename req url '&lt;A href="https://www.consumerfinance.gov/data-research/consumer-complaints/search/api/v1/?date_received_max=2020-01-31&amp;amp;date_received_min=2020-01-01&amp;amp;sort=created_date_desc&amp;amp;no_aggs=true" target="_blank" rel="noopener"&gt;https://www.consumerfinance.gov/data-research/consumer-complaints/search/api/v1/?date_received_max=2020-01-31&amp;amp;date_received_min=2020-01-01&amp;amp;sort=created_date_desc&amp;amp;no_aggs=true&lt;/A&gt;' debug lrecl=8192;&lt;BR /&gt;LIBNAME resp JSON fileref=req;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;Still the same error message:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;ERROR: The connection has timed out..&lt;BR /&gt;ERROR: Error in the LIBNAME statement.&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Feb 2020 02:37:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Rest-API-Proc-HTTP-failing/m-p/624070#M20056</guid>
      <dc:creator>ElvisK</dc:creator>
      <dc:date>2020-02-12T02:37:57Z</dc:date>
    </item>
    <item>
      <title>Re: Rest API Proc HTTP failing</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Rest-API-Proc-HTTP-failing/m-p/624073#M20057</link>
      <description>&lt;P&gt;The code as posted by&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13868"&gt;@AhmedAl_Attar&lt;/a&gt;&amp;nbsp;works for me.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you get a timeout executing this code 1:1 then eventually you've got a firewall blocking the new URL.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Feb 2020 03:00:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Rest-API-Proc-HTTP-failing/m-p/624073#M20057</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2020-02-12T03:00:16Z</dc:date>
    </item>
    <item>
      <title>Re: Rest API Proc HTTP failing</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Rest-API-Proc-HTTP-failing/m-p/624084#M20060</link>
      <description>&lt;P&gt;Thank you for the heads up - I will contact my admin to see what is the issue.Could either one of you please run the following code on your machine to see if it works? I would really appreciate it!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;FONT&gt;%let url1=&lt;A href="https://www.consumerfinance.gov/data-research/consumer-complaints/search/api/v1/?date_received_min" target="_blank" rel="noopener"&gt;https://www.consumerfinance.gov/data-research/consumer-complaints/search/api/v1/?date_received_min&lt;/A&gt;;&lt;BR /&gt;%let url2=2020-01-01%str(&amp;amp;)field=all%str(&amp;amp;)format=json%str(&amp;amp;)no_aggs=true;&lt;BR /&gt;%let fullurl=&amp;amp;url1.&amp;amp;url2.;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT&gt;%put &amp;amp;url1;&lt;BR /&gt;%put &amp;amp;url2;&lt;BR /&gt;%put &amp;amp;fullurl;&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;filename CFPB temp;&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;proc http&lt;BR /&gt;&amp;nbsp;url= "&amp;amp;fullurl."&lt;BR /&gt;&amp;nbsp;method="GET"&lt;BR /&gt;&amp;nbsp;out=CFPB;&lt;BR /&gt;run;&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;/* Let the JSON engine do its thing */&lt;BR /&gt;libname posts JSON fileref=CFPB;&lt;BR /&gt;title "Automap of JSON data";&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;/* examine resulting tables/structure */&lt;BR /&gt;proc datasets lib=posts;&lt;BR /&gt;quit;&lt;BR /&gt;proc print data=posts.alldata(obs=20);&lt;BR /&gt;run;&lt;/FONT&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 12 Feb 2020 05:56:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Rest-API-Proc-HTTP-failing/m-p/624084#M20060</guid>
      <dc:creator>ElvisK</dc:creator>
      <dc:date>2020-02-12T05:56:02Z</dc:date>
    </item>
    <item>
      <title>Re: Rest API Proc HTTP failing</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Rest-API-Proc-HTTP-failing/m-p/624130#M20062</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/310169"&gt;@ElvisK&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've executed the code you've posted but never got a result back (=job was hanging).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I then also used the generated URL with the syntax&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13868"&gt;@AhmedAl_Attar&lt;/a&gt;&amp;nbsp;posted.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename req url 'https://www.consumerfinance.gov/data-research/consumer-complaints/search/api/v1/?date_received_min2020-01-01&amp;amp;field=all&amp;amp;format=json&amp;amp;no_aggs=true' debug lrecl=8192;
LIBNAME resp JSON fileref=req;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This resulted in the following error which is likely due to my session running SBSC as LATIN1 and I can't change it to UTF8.&lt;/P&gt;
&lt;PRE&gt;ERROR: Invalid JSON in input near line 1 column 2903276: Some code points did not transcode.
&lt;/PRE&gt;
&lt;P&gt;If your session runs with a session encoding of UTF8 then it might be worth to try and execute above code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Feb 2020 10:04:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Rest-API-Proc-HTTP-failing/m-p/624130#M20062</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2020-02-12T10:04:01Z</dc:date>
    </item>
    <item>
      <title>Re: Rest API Proc HTTP failing</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Rest-API-Proc-HTTP-failing/m-p/624166#M20064</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/310169"&gt;@ElvisK&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I just tried this, it worked&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename req url 'https://www.consumerfinance.gov/data-research/consumer-complaints/search/api/v1/?date_received_max=2020-01-31&amp;amp;date_received_min=2020-01-01&amp;amp;field=all&amp;amp;format=json&amp;amp;no_aggs=true&amp;amp;queryString=%3Fdate_received_max%3D2020-01-31%26date_received_min%3D2020-01-01%26field%3Dall%26size%3D25%26sort%3Dcreated_date_desc&amp;amp;size=23914&amp;amp;sort=created_date_desc';
LIBNAME resp JSON fileref=req;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The trick is to make sure the url is fully spelled out, rather than truncated with ...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps,&lt;/P&gt;
&lt;P&gt;Ahmed&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Feb 2020 13:20:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Rest-API-Proc-HTTP-failing/m-p/624166#M20064</guid>
      <dc:creator>AhmedAl_Attar</dc:creator>
      <dc:date>2020-02-12T13:20:01Z</dc:date>
    </item>
    <item>
      <title>Re: Rest API Proc HTTP failing</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Rest-API-Proc-HTTP-failing/m-p/624173#M20065</link>
      <description>&lt;P&gt;I sent a ticket over to our Admin requesting them to release/remove the firewall to the url - Hey &lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #333333; font-family: 'HelevticaNeue-light','Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 150%; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;Ahmed, do you run into an issue when you try to create a sas dataset with the data?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Feb 2020 14:03:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Rest-API-Proc-HTTP-failing/m-p/624173#M20065</guid>
      <dc:creator>ElvisK</dc:creator>
      <dc:date>2020-02-12T14:03:30Z</dc:date>
    </item>
    <item>
      <title>Re: Rest API Proc HTTP failing</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Rest-API-Proc-HTTP-failing/m-p/624186#M20067</link>
      <description>&lt;P&gt;Not from the latest sample I sent you. I get three data sets from the JSON Response&lt;/P&gt;
&lt;P&gt;_SOURCE&lt;/P&gt;
&lt;P&gt;ALLDATA&lt;/P&gt;
&lt;P&gt;ROOT&lt;/P&gt;</description>
      <pubDate>Wed, 12 Feb 2020 14:36:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Rest-API-Proc-HTTP-failing/m-p/624186#M20067</guid>
      <dc:creator>AhmedAl_Attar</dc:creator>
      <dc:date>2020-02-12T14:36:45Z</dc:date>
    </item>
    <item>
      <title>Re: Rest API Proc HTTP failing</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Rest-API-Proc-HTTP-failing/m-p/624907#M20181</link>
      <description>&lt;P&gt;Thank you - I am waiting for the admins to remove the firewall and will let you know if everything works on my end.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Feb 2020 17:44:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Rest-API-Proc-HTTP-failing/m-p/624907#M20181</guid>
      <dc:creator>ElvisK</dc:creator>
      <dc:date>2020-02-14T17:44:41Z</dc:date>
    </item>
  </channel>
</rss>

