<?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 Authenticating AGOL through SAML with Token using python   in ArcGIS API for Python Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-python-questions/authenticating-agol-through-saml-with-token-using/m-p/781348#M1217</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to connect to my organizations AGOL account and retrieve a list of of objects. Our AGOL is authenticated using SAML. I have followed the &lt;A href="https://developers.arcgis.com/labs/rest/get-an-access-token/"&gt;steps here&lt;/A&gt; to create an application and used Postman to generate the python code required to create a token which I've made into a module called getToken.&amp;nbsp;&amp;nbsp;When I try and search for AGOL content all I get is public content back. Which makes me think my token isn't working or getting passed in correctly to the GIS module? This is my code for my search:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;DIV style="color: #d4d4d4; background-color: #1e1e1e; font-weight: normal; font-size: 14px;"&gt;&lt;DIV&gt;&lt;DIV style="background-color: #1e1e1e; font-weight: normal;"&gt;&lt;DIV&gt;&lt;DIV style="background-color: #1e1e1e; font-weight: normal;"&gt;&lt;DIV&gt;&lt;DIV style="background-color: #1e1e1e; font-weight: normal;"&gt;&lt;DIV&gt;&lt;SPAN style="color: #c586c0;"&gt;from&lt;/SPAN&gt;&lt;SPAN&gt; arcgis.gis &lt;/SPAN&gt;&lt;SPAN style="color: #c586c0;"&gt;import&lt;/SPAN&gt;&lt;SPAN&gt; GIS&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV style="background-color: #1e1e1e; font-weight: normal;"&gt;&lt;DIV&gt;&lt;DIV style="background-color: #1e1e1e; font-weight: normal;"&gt;&lt;DIV&gt;&lt;SPAN style="color: #c586c0;"&gt;import&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp; getToken&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;agolToken &lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt; getToken.getToken()&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;url &lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #ce9178;"&gt;"https://myOrg.maps.arcgis.com/home"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;item_types &lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt; [ &lt;/SPAN&gt;&lt;SPAN style="color: #ce9178;"&gt;"Web Map"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #ce9178;"&gt;"Web Mapping Application"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #ce9178;"&gt;"Map Service"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #ce9178;"&gt;"Feature Service"&lt;/SPAN&gt;&lt;SPAN&gt; ]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="color: #d4d4d4;"&gt;gis =&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt; GIS(url, &lt;/SPAN&gt;&lt;SPAN style="color: #9cdcfe;"&gt;token&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt;=agol&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt;Token)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV style="background-color: #1e1e1e; font-weight: normal;"&gt;&lt;DIV&gt;&lt;SPAN style="color: #c586c0;"&gt;for&lt;/SPAN&gt;&lt;SPAN&gt; itemtype &lt;/SPAN&gt;&lt;SPAN style="color: #569cd6;"&gt;in&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;item_types:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;agol_items &lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;gis.content.search(&lt;/SPAN&gt;&lt;SPAN style="color: #9cdcfe;"&gt;query&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #ce9178;"&gt;""&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #9cdcfe;"&gt;sort_field&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #ce9178;"&gt;"title"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #9cdcfe;"&gt;sort_order&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #ce9178;"&gt;"asc"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #9cdcfe;"&gt;item_type&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;itemtype, &lt;/SPAN&gt;&lt;SPAN style="color: #9cdcfe;"&gt;max_items&lt;/SPAN&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #b5cea8;"&gt;100000&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #c586c0;"&gt;for&lt;/SPAN&gt;&lt;SPAN&gt; item &lt;/SPAN&gt;&lt;SPAN style="color: #569cd6;"&gt;in&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;agol_items:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #dcdcaa;"&gt;print&lt;/SPAN&gt;&lt;SPAN&gt;(item[&lt;/SPAN&gt;&lt;SPAN style="color: #ce9178;"&gt;'title'&lt;/SPAN&gt;&lt;SPAN&gt;],item[&lt;/SPAN&gt;&lt;SPAN style="color: #ce9178;"&gt;'access'&lt;/SPAN&gt;&lt;SPAN&gt;],item[&lt;/SPAN&gt;&lt;SPAN style="color: #ce9178;"&gt;'type'&lt;/SPAN&gt;&lt;SPAN&gt;])&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As stated, this will only return public items. Is there a way I can be sure that my token is working? Is there something I am doing wrong? The token is coming in correctly from my getToken module. Even when I hardcode it in I still only get public content.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edit:&amp;nbsp;&lt;BR /&gt;I've tried passing in my client ID as &lt;A href="https://developers.arcgis.com/python/guide/working-with-different-authentication-schemes/#User-authentication-with-OAuth-2.0"&gt;suggested here.&lt;/A&gt;&amp;nbsp;That brings up:&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;&lt;SPAN style="font-family: 'andale mono', monospace; color: #000000;"&gt;Please sign in to your GIS and paste the code that is obtained below.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: 'andale mono', monospace; color: #000000;"&gt;If a web browser does not automatically open, please navigate to the URL below yourself instead.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: 'andale mono', monospace; color: #000000;"&gt;Opening web browser to navigate to: &amp;lt;URL&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: 'andale mono', monospace; color: #000000;"&gt;Enter code obtained on signing in using SAML:&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The page that comes up&amp;nbsp;says&amp;nbsp;&lt;STRONG&gt;Invalid redirect_uri Error: 400&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 08 Apr 2019 21:59:17 GMT</pubDate>
    <dc:creator>CoreyUnger</dc:creator>
    <dc:date>2019-04-08T21:59:17Z</dc:date>
    <item>
      <title>Authenticating AGOL through SAML with Token using python</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/authenticating-agol-through-saml-with-token-using/m-p/781348#M1217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to connect to my organizations AGOL account and retrieve a list of of objects. Our AGOL is authenticated using SAML. I have followed the &lt;A href="https://developers.arcgis.com/labs/rest/get-an-access-token/"&gt;steps here&lt;/A&gt; to create an application and used Postman to generate the python code required to create a token which I've made into a module called getToken.&amp;nbsp;&amp;nbsp;When I try and search for AGOL content all I get is public content back. Which makes me think my token isn't working or getting passed in correctly to the GIS module? This is my code for my search:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;DIV style="color: #d4d4d4; background-color: #1e1e1e; font-weight: normal; font-size: 14px;"&gt;&lt;DIV&gt;&lt;DIV style="background-color: #1e1e1e; font-weight: normal;"&gt;&lt;DIV&gt;&lt;DIV style="background-color: #1e1e1e; font-weight: normal;"&gt;&lt;DIV&gt;&lt;DIV style="background-color: #1e1e1e; font-weight: normal;"&gt;&lt;DIV&gt;&lt;SPAN style="color: #c586c0;"&gt;from&lt;/SPAN&gt;&lt;SPAN&gt; arcgis.gis &lt;/SPAN&gt;&lt;SPAN style="color: #c586c0;"&gt;import&lt;/SPAN&gt;&lt;SPAN&gt; GIS&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV style="background-color: #1e1e1e; font-weight: normal;"&gt;&lt;DIV&gt;&lt;DIV style="background-color: #1e1e1e; font-weight: normal;"&gt;&lt;DIV&gt;&lt;SPAN style="color: #c586c0;"&gt;import&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp; getToken&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;agolToken &lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt; getToken.getToken()&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;url &lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #ce9178;"&gt;"https://myOrg.maps.arcgis.com/home"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;item_types &lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt; [ &lt;/SPAN&gt;&lt;SPAN style="color: #ce9178;"&gt;"Web Map"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #ce9178;"&gt;"Web Mapping Application"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #ce9178;"&gt;"Map Service"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #ce9178;"&gt;"Feature Service"&lt;/SPAN&gt;&lt;SPAN&gt; ]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="color: #d4d4d4;"&gt;gis =&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt; GIS(url, &lt;/SPAN&gt;&lt;SPAN style="color: #9cdcfe;"&gt;token&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt;=agol&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt;Token)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV style="background-color: #1e1e1e; font-weight: normal;"&gt;&lt;DIV&gt;&lt;SPAN style="color: #c586c0;"&gt;for&lt;/SPAN&gt;&lt;SPAN&gt; itemtype &lt;/SPAN&gt;&lt;SPAN style="color: #569cd6;"&gt;in&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;item_types:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;agol_items &lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;gis.content.search(&lt;/SPAN&gt;&lt;SPAN style="color: #9cdcfe;"&gt;query&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #ce9178;"&gt;""&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #9cdcfe;"&gt;sort_field&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #ce9178;"&gt;"title"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #9cdcfe;"&gt;sort_order&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #ce9178;"&gt;"asc"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #9cdcfe;"&gt;item_type&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;itemtype, &lt;/SPAN&gt;&lt;SPAN style="color: #9cdcfe;"&gt;max_items&lt;/SPAN&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #b5cea8;"&gt;100000&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #c586c0;"&gt;for&lt;/SPAN&gt;&lt;SPAN&gt; item &lt;/SPAN&gt;&lt;SPAN style="color: #569cd6;"&gt;in&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;agol_items:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #dcdcaa;"&gt;print&lt;/SPAN&gt;&lt;SPAN&gt;(item[&lt;/SPAN&gt;&lt;SPAN style="color: #ce9178;"&gt;'title'&lt;/SPAN&gt;&lt;SPAN&gt;],item[&lt;/SPAN&gt;&lt;SPAN style="color: #ce9178;"&gt;'access'&lt;/SPAN&gt;&lt;SPAN&gt;],item[&lt;/SPAN&gt;&lt;SPAN style="color: #ce9178;"&gt;'type'&lt;/SPAN&gt;&lt;SPAN&gt;])&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As stated, this will only return public items. Is there a way I can be sure that my token is working? Is there something I am doing wrong? The token is coming in correctly from my getToken module. Even when I hardcode it in I still only get public content.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edit:&amp;nbsp;&lt;BR /&gt;I've tried passing in my client ID as &lt;A href="https://developers.arcgis.com/python/guide/working-with-different-authentication-schemes/#User-authentication-with-OAuth-2.0"&gt;suggested here.&lt;/A&gt;&amp;nbsp;That brings up:&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;&lt;SPAN style="font-family: 'andale mono', monospace; color: #000000;"&gt;Please sign in to your GIS and paste the code that is obtained below.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: 'andale mono', monospace; color: #000000;"&gt;If a web browser does not automatically open, please navigate to the URL below yourself instead.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: 'andale mono', monospace; color: #000000;"&gt;Opening web browser to navigate to: &amp;lt;URL&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: 'andale mono', monospace; color: #000000;"&gt;Enter code obtained on signing in using SAML:&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The page that comes up&amp;nbsp;says&amp;nbsp;&lt;STRONG&gt;Invalid redirect_uri Error: 400&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Apr 2019 21:59:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/authenticating-agol-through-saml-with-token-using/m-p/781348#M1217</guid>
      <dc:creator>CoreyUnger</dc:creator>
      <dc:date>2019-04-08T21:59:17Z</dc:date>
    </item>
    <item>
      <title>Re: Authenticating AGOL through SAML with Token using python</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/authenticating-agol-through-saml-with-token-using/m-p/781349#M1218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was able to accomplish this for my organization's AGOL portal, but had to subclass and modify some methods of the &lt;SPAN style="font-family: 'andale mono', monospace;"&gt;GIS&lt;/SPAN&gt;, &lt;SPAN style="font-family: 'andale mono', monospace;"&gt;Portal&lt;/SPAN&gt;, and &lt;SPAN style="font-family: 'andale mono', monospace;"&gt;ArcGISConnection&lt;/SPAN&gt; classes so they could handle an existing token. Here's &lt;A href="https://github.com/jrmatchett/rcview-pytools/blob/master/rcview_pytools/gis.py"&gt;the code&lt;/A&gt;. It's doing some other things like using the &lt;SPAN style="font-family: 'andale mono', monospace;"&gt;selenium&lt;/SPAN&gt; package to automate SAML authentication, but focusing on how the &lt;SPAN style="font-family: 'andale mono', monospace;"&gt;tokens&lt;/SPAN&gt; parameter and &lt;SPAN style="font-family: 'andale mono', monospace;"&gt;existing_tokens&lt;/SPAN&gt; variable are being handled may give you some leads for your situation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Apr 2019 16:58:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/authenticating-agol-through-saml-with-token-using/m-p/781349#M1218</guid>
      <dc:creator>J_R_Matchett</dc:creator>
      <dc:date>2019-04-24T16:58:50Z</dc:date>
    </item>
    <item>
      <title>Re: Authenticating AGOL through SAML with Token using python</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/authenticating-agol-through-saml-with-token-using/m-p/781350#M1219</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I also have this question&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 May 2019 20:46:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/authenticating-agol-through-saml-with-token-using/m-p/781350#M1219</guid>
      <dc:creator>AlexGilvarry1</dc:creator>
      <dc:date>2019-05-30T20:46:19Z</dc:date>
    </item>
    <item>
      <title>Re: Authenticating AGOL through SAML with Token using python</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/authenticating-agol-through-saml-with-token-using/m-p/1212724#M7750</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/94034"&gt;@J_R_Matchett&lt;/a&gt;&amp;nbsp;Can you repost the link to your code? It is no longer working. I am also unable to connect when pasting the authentication code to python following this prompt.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Sep 2022 22:31:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/authenticating-agol-through-saml-with-token-using/m-p/1212724#M7750</guid>
      <dc:creator>Dwarburg</dc:creator>
      <dc:date>2022-09-14T22:31:49Z</dc:date>
    </item>
  </channel>
</rss>

