<?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: Please ensure gssapi is installed in ArcGIS API for Python Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-python-questions/please-ensure-gssapi-is-installed/m-p/1322192#M8955</link>
    <description>&lt;P&gt;Thanks for all of the info you've added on this issue. Experiencing it right now.... unfortunately for me, our email addresses are our usernames. So I think the whole double '@' thing in the username string is disallowing me to get that syntax to work. Getting "General error occurred: Invalid username or password."&lt;/P&gt;</description>
    <pubDate>Thu, 24 Aug 2023 16:06:19 GMT</pubDate>
    <dc:creator>Juan_Toro-Killion</dc:creator>
    <dc:date>2023-08-24T16:06:19Z</dc:date>
    <item>
      <title>Please ensure gssapi is installed</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/please-ensure-gssapi-is-installed/m-p/1264853#M8466</link>
      <description>&lt;P&gt;I'm trying to login in ArcGIS Enterprise, using a fairly standard call:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;gis = GIS(portalUrl, user, pass)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This used to work, but now I get an error:&lt;/P&gt;&lt;PRE&gt;2023-03-07 10:08:59,110 - DEBUG - Connecting to portal: example.com&lt;BR /&gt;2023-03-07 10:08:59,114 - DEBUG - Starting new HTTPS connection (1): example.com:443&lt;BR /&gt;2023-03-07 10:09:00,029 - DEBUG - https://example.com:443 "GET /portal/info?f=json HTTP/1.1" 500 7058&lt;BR /&gt;2023-03-07 10:09:00,035 - DEBUG - https://example.com:443 "GET /portal/rest/info?f=json HTTP/1.1" 500 7058&lt;BR /&gt;2023-03-07 10:09:00,042 - DEBUG - https://example.com:443 "GET /portal/sharing/rest/info?f=json HTTP/1.1" 200 139&lt;BR /&gt;2023-03-07 10:09:00,048 - DEBUG - https://example.com:443 "GET /portal/rest/services?f=json HTTP/1.1" 500 7058&lt;BR /&gt;2023-03-07 10:09:00,157 - ERROR - Please ensure gssapi is installed&lt;BR /&gt;2023-03-07 10:09:00,171 - DEBUG - Traceback (most recent call last):&lt;BR /&gt;&amp;nbsp; File "D:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\arcgis\auth\_auth\_winauth.py", line 75, in __init__&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; creds = gssapi.raw.acquire_cred_with_password(&lt;BR /&gt;&amp;nbsp; File "gssapi\raw\ext_password.pyx", line 75, in gssapi.raw.ext_password.acquire_cred_with_password&lt;BR /&gt;gssapi.raw.exceptions.BadNameError: Major (131072): An invalid name was supplied, Minor (2529639136): Configuration file does not specify default realm&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;During handling of the above exception, another exception occurred:&amp;nbsp;Traceback (most recent call last):&lt;BR /&gt;&amp;nbsp; File "D:\Data\MOR\Migratie\Download-wf5.py", line 45, in &amp;lt;module&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; main()&lt;BR /&gt;&amp;nbsp; File "D:\Data\MOR\Migratie\Download-wf5.py", line 33, in main&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; gis = GIS(settings.ARCGIS_PORTAL_URL, settings.ARCGIS_USER, settings.ARCGIS_PASS)&lt;BR /&gt;&amp;nbsp; File "D:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\arcgis\gis\__init__.py", line 585, in __init__&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; raise e&lt;BR /&gt;&amp;nbsp; File "D:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\arcgis\gis\__init__.py", line 524, in __init__&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; self._portal = _portalpy.Portal(&lt;BR /&gt;&amp;nbsp; File "D:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\arcgis\gis\_impl\_portalpy.py", line 205, in __init__&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; self.con = Connection(&lt;BR /&gt;&amp;nbsp; File "D:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\arcgis\gis\_impl\_con\_connection.py", line 344, in __init__&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; self._create_session()&lt;BR /&gt;&amp;nbsp; File "D:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\arcgis\gis\_impl\_con\_connection.py", line 691, in _create_session&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; self._session.auth = EsriWindowsAuth(&lt;BR /&gt;&amp;nbsp; File "D:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\arcgis\auth\_auth\_winauth.py", line 84, in __init__&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; raise Exception("Please ensure gssapi is installed")&lt;BR /&gt;Exception: Please ensure gssapi is installed&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A few things to notice:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Some requests to the portal return HTTP 500&lt;/LI&gt;&lt;LI&gt;The first error is &lt;EM&gt;Configuration file does not specify default realm&lt;/EM&gt; . Which configuration file could this be referring to?&lt;/LI&gt;&lt;LI&gt;The second error is &lt;EM&gt;Please ensure gssapi is installed&lt;/EM&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is on a client's environment, so I'm not sure if anything relevant has changed recently. One thing that did change is an upgrade to ArcGIS Pro from 3.0 to 3.1.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Mar 2023 09:17:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/please-ensure-gssapi-is-installed/m-p/1264853#M8466</guid>
      <dc:creator>BerendVeldkamp</dc:creator>
      <dc:date>2023-03-07T09:17:02Z</dc:date>
    </item>
    <item>
      <title>Re: Please ensure gssapi is installed</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/please-ensure-gssapi-is-installed/m-p/1265169#M8468</link>
      <description>&lt;P&gt;I'm seeing the same issue on a machine that I just upgraded to 3.1 A script that I run daily broke and I tracked it down to the GIS call like you found. Looking at my custom Python env and the default, it looks like the package it's looking for is requests-gssapi, which is installed by default. I tried updating, and un-installing/reinstalling the package. The former had no effect, the latter wouldn't let me uninstall.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm pretty sure the upgrade is the culprit. I'm weighing whether I'll lose more by uninstalling and going back to 3.0 or sticking with 3.1 until we have a fix.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Mar 2023 21:07:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/please-ensure-gssapi-is-installed/m-p/1265169#M8468</guid>
      <dc:creator>JCGuarneri</dc:creator>
      <dc:date>2023-03-07T21:07:15Z</dc:date>
    </item>
    <item>
      <title>Re: Please ensure gssapi is installed</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/please-ensure-gssapi-is-installed/m-p/1265491#M8473</link>
      <description>&lt;P&gt;I've found a workaround for now. It appears that the issue is limited to accounts trying to authenticate against Active Directory. Built-in Portal users are working correctly, so I created a new user just to run Python scripts and stored the credentials in a profile. My script is running correctly now. I'm not 100% sure it's necessary, but I also assigned the new user a Pro license to make sure it could use the API.&lt;BR /&gt;&lt;BR /&gt;I'm also working with tech support to see if we can resolve the gssapi issue.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2023 15:52:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/please-ensure-gssapi-is-installed/m-p/1265491#M8473</guid>
      <dc:creator>JCGuarneri</dc:creator>
      <dc:date>2023-03-08T15:52:20Z</dc:date>
    </item>
    <item>
      <title>Re: Please ensure gssapi is installed</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/please-ensure-gssapi-is-installed/m-p/1265882#M8477</link>
      <description>&lt;P&gt;Thanks for your response, it's good to see I'm not the only one having this problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the environment I'm working on, only AD users are allowed to login, so unfortunately a built-in user is not an option for me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please keep us informed if tech supports finds a solution!&lt;/P&gt;</description>
      <pubDate>Thu, 09 Mar 2023 07:16:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/please-ensure-gssapi-is-installed/m-p/1265882#M8477</guid>
      <dc:creator>BerendVeldkamp</dc:creator>
      <dc:date>2023-03-09T07:16:21Z</dc:date>
    </item>
    <item>
      <title>Re: Please ensure gssapi is installed</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/please-ensure-gssapi-is-installed/m-p/1290253#M8697</link>
      <description>&lt;P&gt;Getting the same errors 5-17-2023.&amp;nbsp; Anyone have updates on how to overcome this issue with AD users?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 May 2023 18:09:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/please-ensure-gssapi-is-installed/m-p/1290253#M8697</guid>
      <dc:creator>SeanO_Neill</dc:creator>
      <dc:date>2023-05-17T18:09:52Z</dc:date>
    </item>
    <item>
      <title>Re: Please ensure gssapi is installed</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/please-ensure-gssapi-is-installed/m-p/1290269#M8698</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/84902"&gt;@SeanO_Neill&lt;/a&gt;&amp;nbsp;Ultimately, Esri tech support determined it was out of scope. I don't fully agree, but I've got to go with that. I'm considering logging a bug on the github page. The bit of code that handles the Windows authentication has definitely changed. Just for kicks, I followed the error chain to _winauth.py in&amp;nbsp;C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\Lib\site-packages\arcgis\auth\_auth. The error is happening in the EsriWindowsAuth class. I compared the code in this class for the 3.1 install and a machine that's still on 3.0.3, and this class has changed substantially. There's no attempt to import a package called gssapi in the older one. If I were braver, I'd try swapping the old code in to the new _winauth.py file, but I don't feel like voiding my warranty.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Interestingly, gssapi&amp;nbsp;&lt;EM&gt;is&lt;/EM&gt; included in the new site packages and I can import it from the Python script window. I still get the import&amp;nbsp; error, though.&lt;/P&gt;</description>
      <pubDate>Wed, 17 May 2023 18:48:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/please-ensure-gssapi-is-installed/m-p/1290269#M8698</guid>
      <dc:creator>JCGuarneri</dc:creator>
      <dc:date>2023-05-17T18:48:04Z</dc:date>
    </item>
    <item>
      <title>Re: Please ensure gssapi is installed</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/please-ensure-gssapi-is-installed/m-p/1290299#M8699</link>
      <description>&lt;P&gt;Looking at that code block some more, I realized that just because the exception returned by the try/except block says "Please ensure gssapi is installed") doesn't mean that the problem is with importing gssapi. It turns out, that's not the issue.&lt;/P&gt;&lt;P&gt;Looking at the error messages again, I realized I was overlooking the core error, which happens a few lines after importing gssapi and generates the error message in&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/3870"&gt;@BerendVeldkamp&lt;/a&gt;&amp;nbsp;'s original post:&lt;/P&gt;&lt;PRE&gt;gssapi.raw.exceptions.BadNameError: Major (131072): An invalid name was supplied, Minor (2529639136): Configuration file does not specify default realm&amp;nbsp;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is a gssapi error, so the "Please ensure gssapi is installed" is a red herring. To me, this supports Esri having made an error in the code somewhere. I'll definitely be filing a bug report.&lt;/P&gt;</description>
      <pubDate>Wed, 17 May 2023 19:07:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/please-ensure-gssapi-is-installed/m-p/1290299#M8699</guid>
      <dc:creator>JCGuarneri</dc:creator>
      <dc:date>2023-05-17T19:07:22Z</dc:date>
    </item>
    <item>
      <title>Re: Please ensure gssapi is installed</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/please-ensure-gssapi-is-installed/m-p/1290301#M8700</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/347312"&gt;@JCGuarneri&lt;/a&gt;&amp;nbsp; Thanks for that update.&amp;nbsp; I will also pursue a bug in git and see if it goes anywhere.&amp;nbsp; This is extremely frustrating for such a fundamental operation. -And nice reconnaissance!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 May 2023 19:16:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/please-ensure-gssapi-is-installed/m-p/1290301#M8700</guid>
      <dc:creator>SeanO_Neill</dc:creator>
      <dc:date>2023-05-17T19:16:01Z</dc:date>
    </item>
    <item>
      <title>Re: Please ensure gssapi is installed</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/please-ensure-gssapi-is-installed/m-p/1290588#M8704</link>
      <description>&lt;P&gt;I could have sworn I tried this before, but I'm finding it works properly if I try authenticating as "user@domain" but not if i use r"domain\user".&lt;/P&gt;</description>
      <pubDate>Thu, 18 May 2023 12:44:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/please-ensure-gssapi-is-installed/m-p/1290588#M8704</guid>
      <dc:creator>JCGuarneri</dc:creator>
      <dc:date>2023-05-18T12:44:07Z</dc:date>
    </item>
    <item>
      <title>Re: Please ensure gssapi is installed</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/please-ensure-gssapi-is-installed/m-p/1291155#M8709</link>
      <description>&lt;P&gt;For me this does not work...I did see your post about hard coding the creds and I'm going to investigate that.&amp;nbsp; &amp;nbsp;Thanks for all the input on this issue...&lt;/P&gt;</description>
      <pubDate>Fri, 19 May 2023 16:46:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/please-ensure-gssapi-is-installed/m-p/1291155#M8709</guid>
      <dc:creator>SeanO_Neill</dc:creator>
      <dc:date>2023-05-19T16:46:24Z</dc:date>
    </item>
    <item>
      <title>Re: Please ensure gssapi is installed</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/please-ensure-gssapi-is-installed/m-p/1302131#M8818</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/347312"&gt;@JCGuarneri&lt;/a&gt;&amp;nbsp;Thank you for your contributions to this thread. I was also able to connect using "username@domain" however, it looks like attempts to call administration operations fail. The only way I was able to get it to work was to enable the psa and log in with those credentials. This is very much not ideal.&lt;/P&gt;&lt;P&gt;Were you able to log a bug with Esri Support, or are they still trying to blame it on a 3rd party library that they built their product around?&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jun 2023 17:24:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/please-ensure-gssapi-is-installed/m-p/1302131#M8818</guid>
      <dc:creator>TonyContreras_Frisco_TX</dc:creator>
      <dc:date>2023-06-22T17:24:55Z</dc:date>
    </item>
    <item>
      <title>Re: Please ensure gssapi is installed</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/please-ensure-gssapi-is-installed/m-p/1302963#M8826</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/406743"&gt;@TonyContreras_Frisco_TX&lt;/a&gt;&amp;nbsp; You know, I forgot to file a bug report. Esri didn't quite lay the blame, but did say it wasn't supported. I just went to file a bug report and saw there is one from 4 days ago (perhaps by you?). I added some comments to that one. I'll also reach out to the tech support rep who was helping me and update him with my findings and that bug report.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jun 2023 13:19:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/please-ensure-gssapi-is-installed/m-p/1302963#M8826</guid>
      <dc:creator>JCGuarneri</dc:creator>
      <dc:date>2023-06-26T13:19:32Z</dc:date>
    </item>
    <item>
      <title>Re: Please ensure gssapi is installed</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/please-ensure-gssapi-is-installed/m-p/1303011#M8827</link>
      <description>&lt;P&gt;Thanks for the update. I did enter the github bug and saw your comment. The information below is a tangent, but related to your experience and something that I hope the Esri Support management will correct.&lt;/P&gt;&lt;P&gt;"Outside the scope of Support" is the typical answer when the analyst does not want to continue working on the issue and there is a possibility that they could say the issue is with a hardware or software component not created by Esri.&lt;/P&gt;&lt;P&gt;In this case, the error referencing the gssapi module. Their aircgis python API utilizes many third party python libraries (including ones that are part of the core Python product that is installed with and required to use the software purchased from and "Supported by" Esri, ie. ArcGIS Pro, ArcGIS Server), so if you get an error that mentions any of those other libraries, Esri Support makes the customer prove that the issue is with their part of the product. Instead, they should work the case and collaborate with the product team until it can be proven that the issue is with a third-party software, especially in situations of a documented supported workflow.&lt;/P&gt;&lt;P&gt;The same goes for Enterprise products that are documented to support Windows, LDAP, and group managed service accounts, or that have products like Apache Tomcat at the core of the runtime of their products.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jun 2023 14:48:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/please-ensure-gssapi-is-installed/m-p/1303011#M8827</guid>
      <dc:creator>TonyContreras_Frisco_TX</dc:creator>
      <dc:date>2023-06-26T14:48:11Z</dc:date>
    </item>
    <item>
      <title>Re: Please ensure gssapi is installed</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/please-ensure-gssapi-is-installed/m-p/1322192#M8955</link>
      <description>&lt;P&gt;Thanks for all of the info you've added on this issue. Experiencing it right now.... unfortunately for me, our email addresses are our usernames. So I think the whole double '@' thing in the username string is disallowing me to get that syntax to work. Getting "General error occurred: Invalid username or password."&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2023 16:06:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/please-ensure-gssapi-is-installed/m-p/1322192#M8955</guid>
      <dc:creator>Juan_Toro-Killion</dc:creator>
      <dc:date>2023-08-24T16:06:19Z</dc:date>
    </item>
    <item>
      <title>Re: Please ensure gssapi is installed</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/please-ensure-gssapi-is-installed/m-p/1346003#M9241</link>
      <description>&lt;P&gt;I think I have a solution for connecting to a Portal that is using Integrated Windows Authentication from ArcGIS Pro 3.1. However, it only seems to work when connecting to the Active Portal in ArcGIS Pro.&lt;/P&gt;&lt;P&gt;Prior to ArcGIS Pro 3.1 my code looked like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;gis1 = GIS("https://portalurl", username="userid@DOMAIN", password="pass")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;On ArcGIS Pro 3.1 I had to change the username to include the fully-qualified domain in UPPERCASE:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;gis1 = GIS("https://portalurl", username="userid@DOMAIN.COM.AU", password="pass")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Lowercase does not work! Something is definitely broken.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Nov 2023 10:49:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/please-ensure-gssapi-is-installed/m-p/1346003#M9241</guid>
      <dc:creator>Ramitha</dc:creator>
      <dc:date>2023-11-06T10:49:24Z</dc:date>
    </item>
    <item>
      <title>Re: Please ensure gssapi is installed</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/please-ensure-gssapi-is-installed/m-p/1385544#M9676</link>
      <description>&lt;P&gt;I was getting this error also, but based on comments i just try the following and it worked, i'm using AD User, so i just remove the username and password from the string like this:&lt;BR /&gt;gis = GIS("myportal_url",verify_cert=False)&lt;BR /&gt;&lt;BR /&gt;and that worked, in case you need to run it with a different user like admin make sure to run the script as another user, probably using a batch file to do that or opening python or cmd terminal as another user, good luck.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2024 16:50:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/please-ensure-gssapi-is-installed/m-p/1385544#M9676</guid>
      <dc:creator>AlonsoOrtiz</dc:creator>
      <dc:date>2024-02-22T16:50:37Z</dc:date>
    </item>
  </channel>
</rss>

