<?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 webex integration - authentication issues recently in Webex for Developers</title>
    <link>https://community.cisco.com/t5/webex-for-developers/webex-integration-authentication-issues-recently/m-p/5317588#M4459</link>
    <description>&lt;P&gt;Hi Team,&lt;/P&gt;
&lt;P&gt;I have a simple script that was working before basing on webex integration , that was pulling contents of webex spaces that I pointend.&lt;/P&gt;
&lt;P&gt;Today I tried to do the authetnication to get the token, but I dont see the token any more in redirect url&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dbednarc_0-1754395816910.png" style="width: 400px;"&gt;&lt;img src="https://community.cisco.com/t5/image/serverpage/image-id/249724i9537F52266355860/image-size/medium?v=v2&amp;amp;px=400" role="button" title="dbednarc_0-1754395816910.png" alt="dbednarc_0-1754395816910.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I was pasting before contents of (1) and it was working&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;now I am getting :&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.google.com/?state=set_state_here" target="_blank" rel="noopener"&gt;https://www.google.com/?state=set_state_here&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;before I had token in this url , what changed?&lt;/P&gt;
&lt;P&gt;how to fix that?&lt;/P&gt;
&lt;P&gt;I tried to delete the integration and create a new one - same effect&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 05 Aug 2025 12:12:48 GMT</pubDate>
    <dc:creator>dbednarc</dc:creator>
    <dc:date>2025-08-05T12:12:48Z</dc:date>
    <item>
      <title>webex integration - authentication issues recently</title>
      <link>https://community.cisco.com/t5/webex-for-developers/webex-integration-authentication-issues-recently/m-p/5317588#M4459</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;
&lt;P&gt;I have a simple script that was working before basing on webex integration , that was pulling contents of webex spaces that I pointend.&lt;/P&gt;
&lt;P&gt;Today I tried to do the authetnication to get the token, but I dont see the token any more in redirect url&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dbednarc_0-1754395816910.png" style="width: 400px;"&gt;&lt;img src="https://community.cisco.com/t5/image/serverpage/image-id/249724i9537F52266355860/image-size/medium?v=v2&amp;amp;px=400" role="button" title="dbednarc_0-1754395816910.png" alt="dbednarc_0-1754395816910.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I was pasting before contents of (1) and it was working&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;now I am getting :&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.google.com/?state=set_state_here" target="_blank" rel="noopener"&gt;https://www.google.com/?state=set_state_here&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;before I had token in this url , what changed?&lt;/P&gt;
&lt;P&gt;how to fix that?&lt;/P&gt;
&lt;P&gt;I tried to delete the integration and create a new one - same effect&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Aug 2025 12:12:48 GMT</pubDate>
      <guid>https://community.cisco.com/t5/webex-for-developers/webex-integration-authentication-issues-recently/m-p/5317588#M4459</guid>
      <dc:creator>dbednarc</dc:creator>
      <dc:date>2025-08-05T12:12:48Z</dc:date>
    </item>
    <item>
      <title>Re: webex integration - authentication issues recently</title>
      <link>https://community.cisco.com/t5/webex-for-developers/webex-integration-authentication-issues-recently/m-p/5317701#M4461</link>
      <description>&lt;P&gt;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/110027"&gt;@dbednarc&lt;/a&gt;&amp;nbsp;note, that access tokens were never shared in OAuth URLs, what you might be confusing it with is the authorization code that you can exchange for an access token using the APIs. Here is the whole flow for reference&amp;nbsp;&lt;A href="https://developer.webex.com/create/docs/authentication" target="_blank"&gt;https://developer.webex.com/create/docs/authentication&lt;/A&gt;.&amp;nbsp;&lt;BR /&gt;In case you do not get the authorization code like this&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;CODE&gt;&lt;A href="http://your-server.com/auth?code=YjAzYzgyNDYtZTE3YS00OWZkLTg2YTgtNDc3Zjg4YzFiZDlkNTRlN2FhMjMtYzUz" target="_blank"&gt;http://your-server.com/auth?code=YjAzYzgyNDYtZTE3YS00OWZkLTg2YTgtNDc3Zjg4YzFiZDlkNTRlN2FhMjMtYzUz&lt;/A&gt;&lt;/CODE&gt;&amp;nbsp;as described here&amp;nbsp;&lt;A href="https://developer.webex.com/create/docs/authentication#getting-an-access-token" target="_blank"&gt;https://developer.webex.com/create/docs/authentication#getting-an-access-token&lt;/A&gt;&amp;nbsp;, then please open a support case with our team here -&amp;nbsp;&lt;A href="https://developer.webex.com/explore/support" target="_blank"&gt;https://developer.webex.com/explore/support&lt;/A&gt;&amp;nbsp;.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Aug 2025 15:01:48 GMT</pubDate>
      <guid>https://community.cisco.com/t5/webex-for-developers/webex-integration-authentication-issues-recently/m-p/5317701#M4461</guid>
      <dc:creator>Janos Benyovszki</dc:creator>
      <dc:date>2025-08-05T15:01:48Z</dc:date>
    </item>
    <item>
      <title>Re: webex integration - authentication issues recently</title>
      <link>https://community.cisco.com/t5/webex-for-developers/webex-integration-authentication-issues-recently/m-p/5317957#M4465</link>
      <description>&lt;P&gt;Thank you ! You are right, wrong wording, authorization code.&amp;nbsp; I will contact support in that case.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Aug 2025 07:10:04 GMT</pubDate>
      <guid>https://community.cisco.com/t5/webex-for-developers/webex-integration-authentication-issues-recently/m-p/5317957#M4465</guid>
      <dc:creator>dbednarc</dc:creator>
      <dc:date>2025-08-06T07:10:04Z</dc:date>
    </item>
    <item>
      <title>Re: webex integration - authentication issues recently</title>
      <link>https://community.cisco.com/t5/webex-for-developers/webex-integration-authentication-issues-recently/m-p/5317959#M4466</link>
      <description>&lt;P&gt;Could be a token refresh issue have you tried fully disconnecting and reconnecting the Webex integration?&lt;/P&gt;</description>
      <pubDate>Wed, 06 Aug 2025 07:12:36 GMT</pubDate>
      <guid>https://community.cisco.com/t5/webex-for-developers/webex-integration-authentication-issues-recently/m-p/5317959#M4466</guid>
      <dc:creator>Chloeharper</dc:creator>
      <dc:date>2025-08-06T07:12:36Z</dc:date>
    </item>
    <item>
      <title>Re: webex integration - authentication issues recently</title>
      <link>https://community.cisco.com/t5/webex-for-developers/webex-integration-authentication-issues-recently/m-p/5317974#M4467</link>
      <description>&lt;P&gt;I deleted the integration and created form scratch - same issue.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Aug 2025 07:43:59 GMT</pubDate>
      <guid>https://community.cisco.com/t5/webex-for-developers/webex-integration-authentication-issues-recently/m-p/5317974#M4467</guid>
      <dc:creator>dbednarc</dc:creator>
      <dc:date>2025-08-06T07:43:59Z</dc:date>
    </item>
    <item>
      <title>Re: webex integration - authentication issues recently</title>
      <link>https://community.cisco.com/t5/webex-for-developers/webex-integration-authentication-issues-recently/m-p/5317976#M4468</link>
      <description>&lt;P&gt;Issue solved by Support :&lt;/P&gt;
&lt;P&gt;"""&lt;/P&gt;
&lt;P&gt;After a quick test, it appears the issue stems from the redirect URL. The URL &lt;A href="https://www.google.pl" target="_blank"&gt;https://www.google.pl&lt;/A&gt; redirects to &lt;A href="https://www.google.com" target="_blank"&gt;https://www.google.com&lt;/A&gt;, which prevents the authorization code from appearing in the redirected URL. When I changed the redirect URL to &lt;A href="https://www.google.com" target="_blank"&gt;https://www.google.com&lt;/A&gt;, I was able to successfully receive the code in the URL as shown below:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.google.com/?code=OGY0NzBlY2UtOTUwMi00NTYzLTgwNGEtOGRjNjI1ZTgwMWE3YmQ0MDU5NzEt%5bREDACTED_PORTION%5d&amp;amp;state=set_state_here" target="_blank"&gt;https://www.google.com/?code=OGY0NzBlY2UtOTUwMi00NTYzLTgwNGEtOGRjNjI1ZTgwMWE3YmQ0MDU5NzEt[REDACTED_PORTION]&amp;amp;state=set_state_here&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;BR /&gt;When using a redirect URL like &lt;A href="https://www.google.pl" target="_blank"&gt;https://www.google.pl&lt;/A&gt; that internally redirects to &lt;A href="https://www.google.com" target="_blank"&gt;https://www.google.com&lt;/A&gt;, the OAuth flow may fail to capture the authorization code properly because the final redirected URL does not match the originally registered redirect URI. Changing the redirect URL to the exact final destination, such as &lt;A href="https://www.google.com" target="_blank"&gt;https://www.google.com&lt;/A&gt;, ensures that the authorization code is correctly appended to the URL and received by your application.&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;Is there any specific reason for using &lt;A href="https://www.google.pl" target="_blank"&gt;https://www.google.pl&lt;/A&gt; instead of &lt;A href="https://www.google.com" target="_blank"&gt;https://www.google.com&lt;/A&gt; ?&amp;nbsp;&lt;BR /&gt;&amp;nbsp;"""&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;After changing the url to google.com insted of google.pl it works.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Aug 2025 07:50:27 GMT</pubDate>
      <guid>https://community.cisco.com/t5/webex-for-developers/webex-integration-authentication-issues-recently/m-p/5317976#M4468</guid>
      <dc:creator>dbednarc</dc:creator>
      <dc:date>2025-08-06T07:50:27Z</dc:date>
    </item>
  </channel>
</rss>

