<?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: Use Python-API behind Proxy in ArcGIS API for Python Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839067#M3448</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The command&lt;/P&gt;&lt;PRE class="" style="color: #000000; background: #f5f2f0; border: 0px; margin: 0.5em 0px; padding: 1em 1em 1em 3.8em;"&gt;conda upgrade &lt;SPAN class="" style="color: #a67f59; background: rgba(255, 255, 255, 0.5); border: 0px; font-weight: inherit;"&gt;-&lt;/SPAN&gt;c esri arcgis&lt;/PRE&gt;&lt;P&gt;grabs from the esri conda channel and it will always grab the latest released version. It will not get a preliminary version.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this command "-c esri" specifies that it should use the esri conda channel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you wish you upgrade to a specific version you can specify it as:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; background-color: #f5f2f0;"&gt;conda upgrade &lt;/SPAN&gt;&lt;SPAN class="" style="color: #a67f59; background: rgba(255, 255, 255, 0.5); border: 0px; font-weight: inherit;"&gt;-&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #f5f2f0;"&gt;c esri arcgis=1.2.0&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Sep 2017 15:38:54 GMT</pubDate>
    <dc:creator>RohitSingh2</dc:creator>
    <dc:date>2017-09-12T15:38:54Z</dc:date>
    <item>
      <title>Use Python-API behind Proxy</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839058#M3439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;BR /&gt;I'm trying to use the new Python-API with our on-premise system. Our company runs it's own public key infrastructure, so I've configured Portal for ArcGIS with a corresponding certificate. Furthermore, there is a company-wide proxy that we are using.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As a first throw, I'd like to&amp;nbsp;connect to ArcGIS Online by doing this:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;from arcgis.gis import GIS
my_gis = GIS()&lt;/PRE&gt;&lt;P&gt;This crashes with:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
c:\Program Files\ArcGIS\Pro\bin\Python&amp;gt;python.exe "C:\temp\Test.py"
Traceback (most recent call last):
 File "c:\Program Files\ArcGIS\Pro\bin\Python\lib\urllib\request.py", line 1254
, in do_open
 h.request(req.get_method(), req.selector, req.data, headers)
 File "c:\Program Files\ArcGIS\Pro\bin\Python\lib\http\client.py", line 1106, i
n request
 self._send_request(method, url, body, headers)
 File "c:\Program Files\ArcGIS\Pro\bin\Python\lib\http\client.py", line 1151, i
n _send_request
 self.endheaders(body)
 File "c:\Program Files\ArcGIS\Pro\bin\Python\lib\http\client.py", line 1102, i
n endheaders
 self._send_output(message_body)
 File "c:\Program Files\ArcGIS\Pro\bin\Python\lib\http\client.py", line 934, in
 _send_output
 self.send(msg)
 File "c:\Program Files\ArcGIS\Pro\bin\Python\lib\http\client.py", line 877, in
 send
 self.connect()
 File "c:\Program Files\ArcGIS\Pro\bin\Python\lib\http\client.py", line 1252, i
n connect
 super().connect()
 File "c:\Program Files\ArcGIS\Pro\bin\Python\lib\http\client.py", line 853, in
 connect
 self._tunnel()
 File "c:\Program Files\ArcGIS\Pro\bin\Python\lib\http\client.py", line 832, in
 _tunnel
 message.strip()))
OSError: Tunnel connection failed: 407 authenticationrequired

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
 File "C:\temp\Test.py", line 7, in &amp;lt;module&amp;gt;
 my_gis = GIS()
 File "c:\Program Files\ArcGIS\Pro\bin\Python\lib\site-packages\arcgis\gis.py",
 line 95, in __init__
 verify_cert=self._verify_cert, client_id=self._client_id)
 File "c:\Program Files\ArcGIS\Pro\bin\Python\lib\site-packages\arcgis\_impl\po
rtalpy.py", line 160, in __init__
 client_id=client_id)
 File "c:\Program Files\ArcGIS\Pro\bin\Python\lib\site-packages\arcgis\_impl\co
nnection.py", line 281, in __init__
 self.login(username, password, expiration, client_id)
 File "c:\Program Files\ArcGIS\Pro\bin\Python\lib\site-packages\arcgis\_impl\co
nnection.py", line 504, in login
 resp = self.post('', { 'f': 'json' }, add_token=False) # probe portal to fin
d auth scheme
 File "c:\Program Files\ArcGIS\Pro\bin\Python\lib\site-packages\arcgis\_impl\co
nnection.py", line 1031, in post
 resp = opener.open(url, data=encoded_postdata.encode())
 File "c:\Program Files\ArcGIS\Pro\bin\Python\lib\urllib\request.py", line 466,
 in open
 response = self._open(req, data)
 File "c:\Program Files\ArcGIS\Pro\bin\Python\lib\urllib\request.py", line 484,
 in _open
 '_open', req)
 File "c:\Program Files\ArcGIS\Pro\bin\Python\lib\urllib\request.py", line 444,
 in _call_chain
 result = func(*args)
 File "c:\Program Files\ArcGIS\Pro\bin\Python\lib\urllib\request.py", line 1297
, in https_open
 context=self._context, check_hostname=self._check_hostname)
 File "c:\Program Files\ArcGIS\Pro\bin\Python\lib\urllib\request.py", line 1256
, in do_open
 raise URLError(err)
urllib.error.URLError: &amp;lt;urlopen error Tunnel connection failed: 407 authenticati
onrequired&amp;gt;&lt;/PRE&gt;&lt;P&gt;Is it related to some proxy issues and if yes, where do I have to configure the proxy?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 16:59:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839058#M3439</guid>
      <dc:creator>MU</dc:creator>
      <dc:date>2021-12-12T16:59:15Z</dc:date>
    </item>
    <item>
      <title>Re: Use Python-API behind Proxy</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839059#M3440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After configuring everything from scratch, I ended up with this:&amp;nbsp;&lt;STRONG&gt;urllib.error.URLError: &amp;lt;urlopen error [WinError 10061]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;A bit of searching the web confirms my suspicion that it is related to the proxy. Our proxy&amp;nbsp;requires authentication and urlopen should actually consider Windows' proxy settings (configured within Internet Explorer), but it doesn't seem to work.&lt;/P&gt;&lt;P&gt;I've also tested whether the environment variables &lt;STRONG&gt;http_proxy&lt;/STRONG&gt; or &lt;STRONG&gt;https_proxy&lt;/STRONG&gt;&amp;nbsp;make any difference -&amp;nbsp;nope &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So any help would be appreciated!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2017 14:56:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839059#M3440</guid>
      <dc:creator>MU</dc:creator>
      <dc:date>2017-06-13T14:56:40Z</dc:date>
    </item>
    <item>
      <title>Re: Use Python-API behind Proxy</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839060#M3441</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am also struggling with this, there is no documentation related to configuring proxy settings, ESRI please publish this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Aug 2017 14:55:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839060#M3441</guid>
      <dc:creator>BenjaminBlackshear</dc:creator>
      <dc:date>2017-08-18T14:55:50Z</dc:date>
    </item>
    <item>
      <title>Re: Use Python-API behind Proxy</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839061#M3442</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The Python API currently doesn't support proxies. We will be adding this support to&amp;nbsp;the next release (release data TBD). Till then, can you see if you can use the workaround at &amp;nbsp;&lt;A class="link-titled" href="http://blog.flimbot.com/2017/05/using-arcgis-api-for-python-101-behind.html" title="http://blog.flimbot.com/2017/05/using-arcgis-api-for-python-101-behind.html"&gt;The lazy Flimbot: Using ArcGIS API for Python (1.0.1) behind a proxy&lt;/A&gt;&amp;nbsp;?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Aug 2017 15:54:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839061#M3442</guid>
      <dc:creator>RohitSingh2</dc:creator>
      <dc:date>2017-08-24T15:54:24Z</dc:date>
    </item>
    <item>
      <title>Re: Use Python-API behind Proxy</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839062#M3443</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;BR /&gt;do you know the next release date? we need the proxy support.&lt;BR /&gt;Thanks,&lt;/P&gt;&lt;P&gt;Eric&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Sep 2017 13:48:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839062#M3443</guid>
      <dc:creator>ericjetter</dc:creator>
      <dc:date>2017-09-04T13:48:12Z</dc:date>
    </item>
    <item>
      <title>Re: Use Python-API behind Proxy</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839063#M3444</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We released v1.2.3 with support for proxy servers on&amp;nbsp;Friday.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;SPAN style="color: #808080;"&gt;In addition to explicitly named variable, the GIS object supports optional key word
&lt;/SPAN&gt;&lt;SPAN style="color: #808080;"&gt;arguments
&lt;/SPAN&gt;&lt;SPAN style="color: #808080;"&gt;
&lt;/SPAN&gt;&lt;SPAN style="color: #808080;"&gt;================&amp;nbsp;&amp;nbsp;&amp;nbsp; ===============================================================
&lt;/SPAN&gt;&lt;SPAN style="color: #808080;"&gt;**kwargs**&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; **Description**
&lt;/SPAN&gt;&lt;SPAN style="color: #808080;"&gt;----------------&amp;nbsp;&amp;nbsp;&amp;nbsp; ---------------------------------------------------------------
&lt;/SPAN&gt;&lt;SPAN style="color: #808080;"&gt;proxy_host&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; optional string, host name of the proxy server
&lt;/SPAN&gt;&lt;SPAN style="color: #808080;"&gt;----------------&amp;nbsp;&amp;nbsp;&amp;nbsp; ---------------------------------------------------------------
&lt;/SPAN&gt;&lt;SPAN style="color: #808080;"&gt;proxy_port&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; optional integer, proxy host port.&amp;nbsp; The default is 80.
&lt;/SPAN&gt;&lt;SPAN style="color: #808080;"&gt;================&amp;nbsp;&amp;nbsp;&amp;nbsp; ===============================================================
&lt;/SPAN&gt;&lt;SPAN style="color: #808080;"&gt;
&lt;/SPAN&gt;&lt;SPAN style="color: #808080;"&gt;
&lt;/SPAN&gt;&lt;SPAN style="color: #808080;"&gt;Usage Example: Anonymous ArcGIS Online Login with Proxy
&lt;/SPAN&gt;&lt;SPAN style="color: #808080;"&gt;
&lt;/SPAN&gt;&lt;SPAN style="color: #808080;"&gt;gis = GIS(proxy_host='127.0.0.1', proxy_port=8888)
&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 10:13:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839063#M3444</guid>
      <dc:creator>RohitSingh2</dc:creator>
      <dc:date>2021-12-12T10:13:32Z</dc:date>
    </item>
    <item>
      <title>Re: Use Python-API behind Proxy</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839064#M3445</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;thanks for your answer.&lt;/P&gt;&lt;P&gt;But the new version is not available on &lt;A href="https://developers.arcgis.com/python/"&gt;https://developers.arcgis.com/python/&lt;/A&gt;?&lt;/P&gt;&lt;P&gt;Eric&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Sep 2017 06:57:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839064#M3445</guid>
      <dc:creator>ericjetter</dc:creator>
      <dc:date>2017-09-12T06:57:47Z</dc:date>
    </item>
    <item>
      <title>Re: Use Python-API behind Proxy</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839065#M3446</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is available on the esri conda channel - &lt;A class="link-titled" href="https://anaconda.org/esri/arcgis/files" title="https://anaconda.org/esri/arcgis/files"&gt;Files :: Anaconda Cloud&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We'll be&amp;nbsp;updating the developer site&amp;nbsp;later this month.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Sep 2017 14:17:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839065#M3446</guid>
      <dc:creator>RohitSingh2</dc:creator>
      <dc:date>2017-09-12T14:17:41Z</dc:date>
    </item>
    <item>
      <title>Re: Use Python-API behind Proxy</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839066#M3447</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/people/rsingh-esristaff"&gt;rsingh-esristaff&lt;/A&gt; ,&lt;/P&gt;&lt;P&gt;I used &lt;/P&gt;&lt;PRE class="" style="color: #000000; background: #f5f2f0; margin: 0.5em 0px; padding: 1em 1em 1em 3.8em;"&gt;conda upgrade &lt;SPAN class="" style="color: #a67f59; background: rgba(255, 255, 255, 0.5);"&gt;-&lt;/SPAN&gt;c esri arcgis&lt;/PRE&gt;&lt;P&gt;in the Anaconda Prompt window (today) based on the instructions in &lt;A href="https://community.esri.com/groups/arcgis-python-api/blog/2017/07/17/arcgis-api-for-python-12-released"&gt;https://community.esri.com/groups/arcgis-python-api/blog/2017/07/17/arcgis-api-for-python-12-released&lt;/A&gt;&amp;nbsp; and it looks like is grabbed the 1.2.3 release.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/370687_pastedImage_2.png" style="width: 532px; height: 169px;" /&gt;&lt;/P&gt;&lt;P&gt;Does the above command grab from the &lt;EM&gt;esri conda channel&lt;/EM&gt; ?&amp;nbsp; And if is does, will it always grab a "ready for release" version and not a preliminary release?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: I found using the command line has worked better than trying to do the upgrade thru Pro...however, I may be doing that incorrectly or mixing apples with oranges.&amp;nbsp; However, the above command is very straight forward for me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Sep 2017 15:32:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839066#M3447</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2017-09-12T15:32:30Z</dc:date>
    </item>
    <item>
      <title>Re: Use Python-API behind Proxy</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839067#M3448</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The command&lt;/P&gt;&lt;PRE class="" style="color: #000000; background: #f5f2f0; border: 0px; margin: 0.5em 0px; padding: 1em 1em 1em 3.8em;"&gt;conda upgrade &lt;SPAN class="" style="color: #a67f59; background: rgba(255, 255, 255, 0.5); border: 0px; font-weight: inherit;"&gt;-&lt;/SPAN&gt;c esri arcgis&lt;/PRE&gt;&lt;P&gt;grabs from the esri conda channel and it will always grab the latest released version. It will not get a preliminary version.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this command "-c esri" specifies that it should use the esri conda channel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you wish you upgrade to a specific version you can specify it as:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; background-color: #f5f2f0;"&gt;conda upgrade &lt;/SPAN&gt;&lt;SPAN class="" style="color: #a67f59; background: rgba(255, 255, 255, 0.5); border: 0px; font-weight: inherit;"&gt;-&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #f5f2f0;"&gt;c esri arcgis=1.2.0&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Sep 2017 15:38:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839067#M3448</guid>
      <dc:creator>RohitSingh2</dc:creator>
      <dc:date>2017-09-12T15:38:54Z</dc:date>
    </item>
    <item>
      <title>Re: Use Python-API behind Proxy</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839068#M3449</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rohit,&lt;/P&gt;&lt;P&gt;Does it&amp;nbsp;support proxy authentication as well?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Sep 2017 23:15:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839068#M3449</guid>
      <dc:creator>AnthonyRyanEQL</dc:creator>
      <dc:date>2017-09-12T23:15:42Z</dc:date>
    </item>
    <item>
      <title>Re: Use Python-API behind Proxy</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839069#M3450</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rohit,&lt;/P&gt;&lt;P&gt;we also need proxy authentication!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Eric&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Sep 2017 07:07:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839069#M3450</guid>
      <dc:creator>ericjetter</dc:creator>
      <dc:date>2017-09-14T07:07:36Z</dc:date>
    </item>
    <item>
      <title>Re: Use Python-API behind Proxy</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839070#M3451</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eric, Anthony,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #24292e; background-color: #ffffff; margin-bottom: 16px;"&gt;For secure proxies, can you try the following:&lt;/P&gt;&lt;PRE style="color: #24292e; background-color: #f6f8fa; margin-bottom: 0px !important; padding: 16px;"&gt;&lt;CODE style="background: transparent; border: 0px;"&gt;# username : password @ server&amp;nbsp; gis = GIS(proxy_host="username:password@www.myproxy.com", proxy_port=542)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it doesn't work, please let me know what kind of proxy server you are using.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rohit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Sep 2017 10:41:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839070#M3451</guid>
      <dc:creator>RohitSingh2</dc:creator>
      <dc:date>2017-09-18T10:41:06Z</dc:date>
    </item>
    <item>
      <title>Re: Use Python-API behind Proxy</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839071#M3452</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rohit,&lt;/P&gt;&lt;P&gt;this works fine - thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eric&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2017 12:40:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839071#M3452</guid>
      <dc:creator>ericjetter</dc:creator>
      <dc:date>2017-09-21T12:40:18Z</dc:date>
    </item>
    <item>
      <title>Re: Use Python-API behind Proxy</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839072#M3453</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does this support a PAC based proxy?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2018 21:16:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839072#M3453</guid>
      <dc:creator>RajkumarSingh</dc:creator>
      <dc:date>2018-02-23T21:16:12Z</dc:date>
    </item>
    <item>
      <title>Re: Use Python-API behind Proxy</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839073#M3454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rohit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The above connection string is not working for me. Is there anything that can be done?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Richard.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 May 2019 15:03:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839073#M3454</guid>
      <dc:creator>GISUser17</dc:creator>
      <dc:date>2019-05-20T15:03:17Z</dc:date>
    </item>
    <item>
      <title>Re: Use Python-API behind Proxy</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839074#M3455</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin: 0in; margin-left: .375in; font-family: Calibri; font-size: 11.0pt;"&gt;We do not currently support PAC-based proxies in the Python API.&amp;nbsp; Neither the standard library nor &lt;SPAN style="font-style: italic;"&gt;requests&lt;/SPAN&gt; (which Python API will use for web requests) support these out of the box, so the API would have to be designed specifically to handle the information the PAC file provides.&lt;/P&gt;&lt;P style="margin: 0in; margin-left: .375in; font-family: Calibri; font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin: 0in; margin-left: .375in; font-family: Calibri; font-size: 11.0pt;"&gt;There is a package called pypac (&lt;A href="https://github.com/carsonyl/pypac"&gt;https://github.com/carsonyl/pypac&lt;/A&gt;) that does this functionality, but we do not currently have the infrastructure to build this for designing and testing at this time.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jan 2020 19:14:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839074#M3455</guid>
      <dc:creator>TylerBurns</dc:creator>
      <dc:date>2020-01-15T19:14:04Z</dc:date>
    </item>
    <item>
      <title>Re: Use Python-API behind Proxy</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839075#M3456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am at v 1.7.1, and I see that now proxies are available as kwargs for sure!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/python/api-reference/arcgis.gis.toc.html#gis" title="https://developers.arcgis.com/python/api-reference/arcgis.gis.toc.html#gis"&gt;arcgis.gis module — arcgis 1.7.1 documentation&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/484198_pastedImage_2.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2020 21:49:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839075#M3456</guid>
      <dc:creator>AndresCastillo</dc:creator>
      <dc:date>2020-03-05T21:49:12Z</dc:date>
    </item>
    <item>
      <title>Re: Use Python-API behind Proxy</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839076#M3457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A href="https://community.esri.com/migrated-users/157558" target="_blank"&gt;Rohit Singh&lt;/A&gt; and &lt;A href="https://community.esri.com/migrated-users/224755" target="_blank"&gt;Tyler Burns&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It still doesn't work fine for me:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; csv&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;os&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; sys&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; datetime&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; base64
&lt;SPAN class="keyword token"&gt;from&lt;/SPAN&gt; arcgis&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;gis &lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; GIS
&lt;SPAN class="keyword token"&gt;from&lt;/SPAN&gt; getpass &lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; getpass
&lt;SPAN class="comment token"&gt;# import urllib2&lt;/SPAN&gt;



&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'==================='&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'The script that is running: '&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; __file__&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'First you have to log in to Portal for ArcGIS'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;# Log in&lt;/SPAN&gt;
username &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'axc013o'&lt;/SPAN&gt; 
&lt;SPAN class="comment token"&gt;# username = 'domain\\axc013o' &lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;# password = os.environ.get('USERPASS')&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;# password = getpass(prompt='Password: ', stream=None)&lt;/SPAN&gt;
password &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; base64&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;b64decode&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'randomcharacters'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;decode&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'utf-8'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;


&lt;SPAN class="comment token"&gt;# proxy = urllib2.ProxyHandler({'http': 'http://proxyServer:8080', 'https': 'https://proxyServer:8080'})&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;# opener = urllib2.build_opener(proxy)&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;# urllib2.install_opener(opener)&lt;/SPAN&gt;

portalURL &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'https://portalDomain/portal/'&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;# portalURL = 'https://portalHostname:7443/arcgis/home/'&lt;/SPAN&gt;



myPortal &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; GIS&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;portalURL&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; username&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; password&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;# myPortal = GIS(portalURL, username, password, proxy_host=f'{username}:{password}@proxyServer', proxy_port=8080)&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;# myPortal = GIS(portalURL, username, password, proxy_host=f'{username}:{password}@10.123.8.111', proxy_port=8080)&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;# verify_cert=False does not fix issue.&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;# another one of our proxy servers also doesn't work.&lt;/SPAN&gt;

&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Start: "&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt;datetime&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;datetime&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;today&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;strftime&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'%c'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&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;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;Traceback &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;most recent call last&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
  File &lt;SPAN class="string token"&gt;"C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\urllib\request.py"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &lt;SPAN class="number token"&gt;1318&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; do_open
    encode_chunked&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;req&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;has_header&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'Transfer-encoding'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
  File &lt;SPAN class="string token"&gt;"C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\http\client.py"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &lt;SPAN class="number token"&gt;1254&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; request
    self&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;_send_request&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;method&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; url&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; body&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; headers&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; encode_chunked&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
  File &lt;SPAN class="string token"&gt;"C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\http\client.py"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &lt;SPAN class="number token"&gt;1300&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; _send_request
    self&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;endheaders&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;body&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; encode_chunked&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;encode_chunked&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
  File &lt;SPAN class="string token"&gt;"C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\http\client.py"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &lt;SPAN class="number token"&gt;1249&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; endheaders
    self&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;_send_output&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;message_body&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; encode_chunked&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;encode_chunked&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
  File &lt;SPAN class="string token"&gt;"C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\http\client.py"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &lt;SPAN class="number token"&gt;1036&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; _send_output
    self&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;send&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;msg&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
  File &lt;SPAN class="string token"&gt;"C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\http\client.py"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &lt;SPAN class="number token"&gt;974&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; send
    self&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;connect&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
  File &lt;SPAN class="string token"&gt;"C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\http\client.py"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &lt;SPAN class="number token"&gt;1407&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; connect
    super&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;connect&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
  File &lt;SPAN class="string token"&gt;"C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\http\client.py"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &lt;SPAN class="number token"&gt;950&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; connect
    self&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;_tunnel&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
  File &lt;SPAN class="string token"&gt;"C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\http\client.py"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &lt;SPAN class="number token"&gt;929&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; _tunnel
    message&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;strip&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
OSError&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; Tunnel connection failed&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;503&lt;/SPAN&gt; Service Unavailable

During handling of the above exception&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; another exception occurred&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;

Traceback &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;most recent call last&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
  File &lt;SPAN class="string token"&gt;"C:\Users\AXC013O\Downloads\z\getUsers.py"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &lt;SPAN class="number token"&gt;29&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;&amp;lt;&lt;/SPAN&gt;module&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt;
    myPortal &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; GIS&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;portalURL&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; username&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; password&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
  File &lt;SPAN class="string token"&gt;"C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\arcgis\gis\__init__.py"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &lt;SPAN class="number token"&gt;325&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; __init__
    &lt;SPAN class="keyword token"&gt;raise&lt;/SPAN&gt; e
  File &lt;SPAN class="string token"&gt;"C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\arcgis\gis\__init__.py"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &lt;SPAN class="number token"&gt;310&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; __init__
    referer&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;self&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;_referer&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
  File &lt;SPAN class="string token"&gt;"C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\arcgis\_impl\portalpy.py"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &lt;SPAN class="number token"&gt;163&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; __init__
    client_id&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;client_id&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
  File &lt;SPAN class="string token"&gt;"C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\arcgis\_impl\connection.py"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &lt;SPAN class="number token"&gt;308&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; __init__
    self&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;login&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;username&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; password&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; expiration&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; client_id&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
  File &lt;SPAN class="string token"&gt;"C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\arcgis\_impl\connection.py"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &lt;SPAN class="number token"&gt;554&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; login
    resp &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; self&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;post&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;''&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'f'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'json'&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; add_token&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token boolean"&gt;False&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="comment token"&gt;# probe portal to find auth scheme&lt;/SPAN&gt;
  File &lt;SPAN class="string token"&gt;"C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\arcgis\_impl\connection.py"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &lt;SPAN class="number token"&gt;1131&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; post
    resp &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; opener&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;open&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;url&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; data&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;encoded_postdata&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;encode&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
  File &lt;SPAN class="string token"&gt;"C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\urllib\request.py"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &lt;SPAN class="number token"&gt;526&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; open
    response &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; self&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;_open&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;req&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; data&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
  File &lt;SPAN class="string token"&gt;"C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\urllib\request.py"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &lt;SPAN class="number token"&gt;544&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; _open
    &lt;SPAN class="string token"&gt;'_open'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; req&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
  File &lt;SPAN class="string token"&gt;"C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\urllib\request.py"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &lt;SPAN class="number token"&gt;504&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; _call_chain
    result &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; func&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt;args&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
  File &lt;SPAN class="string token"&gt;"C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\urllib\request.py"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &lt;SPAN class="number token"&gt;1361&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; https_open
    context&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;self&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;_context&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; check_hostname&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;self&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;_check_hostname&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
  File &lt;SPAN class="string token"&gt;"C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\urllib\request.py"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &lt;SPAN class="number token"&gt;1320&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; do_open
    &lt;SPAN class="keyword token"&gt;raise&lt;/SPAN&gt; URLError&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;err&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
urllib&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;error&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;URLError&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;&amp;lt;&lt;/SPAN&gt;urlopen error Tunnel connection failed&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;503&lt;/SPAN&gt; Service Unavailable&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt;‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&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;I even tried putting the proxy server in my environment variables, as well as turning off the pac server, as shown in the attached png.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please suggest any tips?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 10:13:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/839076#M3457</guid>
      <dc:creator>AndresCastillo</dc:creator>
      <dc:date>2021-12-12T10:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: Use Python-API behind Proxy</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/1129695#M6953</link>
      <description>&lt;P&gt;I am using arcgis.__version__ = 1.8.5 and the error I am getting is&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;"A general error occurred: check_hostname requires server_hostname"&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;gis = arcgis.gis.GIS(PORTAL_URL, USER, PASSWORD,
        proxy_host="10.10.10.210", proxy_port=8080)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I use the code in a jupyter notebook I get a very long stack trace with basically the same error.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN&gt;~\AppData\Local\ESRI\conda\envs\arcgis_tools\lib\ssl.py&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt; in &lt;/SPAN&gt;&lt;SPAN&gt;_create&lt;STRONG&gt;(cls, sock, server_side, do_handshake_on_connect, suppress_ragged_eofs, server_hostname, context, session)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;826&lt;/SPAN&gt; &lt;STRONG&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt; context&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt;check_hostname &lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN&gt;and&lt;/SPAN&gt;&lt;/STRONG&gt; &lt;STRONG&gt;&lt;SPAN&gt;not&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt; server_hostname&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;/STRONG&gt; &lt;STRONG&gt;&lt;SPAN&gt;--&amp;gt; &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;827 raise&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt; ValueError&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;STRONG&gt;&lt;SPAN&gt;"check_hostname requires server_hostname"&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;STRONG&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;828&lt;/SPAN&gt; &lt;STRONG&gt;&lt;SPAN&gt;ValueError&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt;: check_hostname requires server_hostname During handling of the above exception, another exception occurred:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Dec 2021 18:41:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/use-python-api-behind-proxy/m-p/1129695#M6953</guid>
      <dc:creator>Brian_Wilson</dc:creator>
      <dc:date>2021-12-30T18:41:43Z</dc:date>
    </item>
  </channel>
</rss>

