<?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: Iframe api is not working as documented in Spotify for Developers</title>
    <link>https://community.spotify.com/t5/Spotify-for-Developers/Iframe-api-is-not-working-as-documented/m-p/5632713#M10652</link>
    <description>&lt;P&gt;i am also getting this.&lt;/P&gt;</description>
    <pubDate>Thu, 07 Sep 2023 03:23:38 GMT</pubDate>
    <dc:creator>spacelampsix</dc:creator>
    <dc:date>2023-09-07T03:23:38Z</dc:date>
    <item>
      <title>Iframe api is not working as documented</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Iframe-api-is-not-working-as-documented/m-p/5621157#M10271</link>
      <description>&lt;P&gt;I am trying to implement the iframe API documented here:&amp;nbsp;&lt;A href="https://developer.spotify.com/documentation/embeds/references/iframe-api#events" target="_blank"&gt;https://developer.spotify.com/documentation/embeds/references/iframe-api#events&lt;/A&gt;&lt;/P&gt;&lt;P&gt;The only event triggered is&amp;nbsp;onSpotifyIframeApiReady. After that, the created controller does not respond to play(), pause(). I added listeners for when it's ready, on playback_update, nothing is triggered.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The only error I see in the console is a 'Refused to set unsafe header "user-agent"'. thrown from a spotify lib js.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I saw multiple threads on this exact issue, contacted spotify support (they said that they can't help me on this)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Some help would be really appreciated.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Aug 2023 09:09:30 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Iframe-api-is-not-working-as-documented/m-p/5621157#M10271</guid>
      <dc:creator>florinTAP</dc:creator>
      <dc:date>2023-08-10T09:09:30Z</dc:date>
    </item>
    <item>
      <title>Re: Iframe api is not working as documented</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Iframe-api-is-not-working-as-documented/m-p/5621650#M10289</link>
      <description>&lt;P&gt;Same issue. Anyone at Spotify willing to help?&lt;/P&gt;</description>
      <pubDate>Fri, 11 Aug 2023 11:14:46 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Iframe-api-is-not-working-as-documented/m-p/5621650#M10289</guid>
      <dc:creator>rares_p</dc:creator>
      <dc:date>2023-08-11T11:14:46Z</dc:date>
    </item>
    <item>
      <title>Re: Iframe api is not working as documented</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Iframe-api-is-not-working-as-documented/m-p/5623037#M10325</link>
      <description>&lt;P&gt;Posting here my reply to&amp;nbsp;&lt;A href="https://community.spotify.com/t5/App-Features/Iframe-api-doesn-t-play-since-some-days/m-p/5618225" target="_blank"&gt;https://community.spotify.com/t5/App-Features/Iframe-api-doesn-t-play-since-some-days/m-p/5618225&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Same here, since a few days,&amp;nbsp;EmbedController play controls does nothing at all, tested on several browsers. This is true even if the frame is not in preview mode.&lt;/P&gt;&lt;P&gt;Here is a small adaptation of the tutorial from&amp;nbsp;&lt;A href="https://developer.spotify.com/documentation/embeds/tutorials/using-the-iframe-api" target="_blank" rel="noopener nofollow noreferrer"&gt;https://developer.spotify.com/documentation/embeds/tutorials/using-the-iframe-api&lt;/A&gt;&amp;nbsp;to reproduce the 'togglePlay' issue :&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;html&amp;gt;
&amp;lt;head&amp;gt;
  &amp;lt;style&amp;gt;
    body {
      display: flex;
      gap: 1rem;
    }
    .episodes {
      display: flex;
      flex-direction: column;
    }
    .episode {
      min-width: max-content;
      margin-bottom: .8rem;
      padding: .8rem 1rem;
      border-radius: 10px;
      border: 0;
      background: #191414;
      color: #fff;
      cursor: pointer;
    }
    .episode:hover {
      background: #1Db954;
    }
  &amp;lt;/style&amp;gt;
&amp;lt;/head&amp;gt;

&amp;lt;body&amp;gt;
  &amp;lt;div class="episodes"&amp;gt;
    &amp;lt;button class="episode" data-spotify-id="spotify:episode:7makk4oTQel546B0PZlDM5"&amp;gt;
      My Path to Spotify: Women in Engineering
    &amp;lt;/button&amp;gt;
    &amp;lt;button class="episode" data-spotify-id="spotify:episode:43cbJh4ccRD7lzM2730YK3"&amp;gt;
      What is Backstage?
    &amp;lt;/button&amp;gt;
    &amp;lt;button class="episode" data-spotify-id="spotify:episode:6I3ZzCxRhRkNqnQNo8AZPV"&amp;gt;
      Introducing Nerd Out@Spotify
    &amp;lt;/button&amp;gt;
    &amp;lt;button id="control"&amp;gt;
      Toggle Play
    &amp;lt;/button&amp;gt;
  &amp;lt;/div&amp;gt;

  &amp;lt;div id="embed-iframe"&amp;gt;&amp;lt;/div&amp;gt;
  &amp;lt;script src="https://open.spotify.com/embed-podcast/iframe-api/v1" async&amp;gt;
  &amp;lt;/script&amp;gt;
  &amp;lt;script type="text/javascript"&amp;gt;
    window.onSpotifyIframeApiReady = (IFrameAPI) =&amp;gt; {
      const element = document.getElementById('embed-iframe');
      const options = {
        width: '100%',
        height: '200',
        uri: 'spotify:episode:7makk4oTQel546B0PZlDM5'
      };
      const callback = (EmbedController) =&amp;gt; {
        document.querySelectorAll('.episode').forEach(
          episode =&amp;gt; {
            episode.addEventListener('click', () =&amp;gt; {
              EmbedController.loadUri(episode.dataset.spotifyId)
            });
          });
        document.getElementById('control').addEventListener('click', () =&amp;gt; {
            console.log("Toggle play on EmbedController")
            EmbedController.togglePlay();
          });
      };
      IFrameAPI.createController(element, options, callback);
    };
  &amp;lt;/script&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 15 Aug 2023 09:53:16 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Iframe-api-is-not-working-as-documented/m-p/5623037#M10325</guid>
      <dc:creator>Trikto</dc:creator>
      <dc:date>2023-08-15T09:53:16Z</dc:date>
    </item>
    <item>
      <title>Re: Iframe api is not working as documented</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Iframe-api-is-not-working-as-documented/m-p/5623278#M10329</link>
      <description>&lt;P&gt;I'm having the same issue since a few days. Worked until +- 3 days ago. Now I'm getting a CSP issue for using eval in script-src (the embed js that the iframe includes). Configuring CSP headers for my site doesn't solve the issue.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From Chrome's dev tools:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL class=""&gt;&lt;LI&gt;&lt;DIV class=""&gt;&lt;P&gt;The Content Security Policy (CSP) prevents the evaluation of arbitrary strings as JavaScript to make it more difficult for an attacker to inject unathorized code on your site.&lt;/P&gt;&lt;P&gt;To solve this issue, avoid using&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;eval(),&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;new Function(),&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;setTimeout([string], ...)&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;and&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;setInterval([string], ...)&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;for evaluating strings.&lt;/P&gt;&lt;P&gt;If you absolutely must: you can enable string evaluation by adding&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;unsafe-eval&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;as an allowed source in a&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;script-src&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;directive.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":warning:"&gt;⚠️&lt;/span&gt;Allowing string evaluation comes at the risk of inline script injection.&lt;/P&gt;&lt;/DIV&gt;&lt;/LI&gt;&lt;LI&gt;GETROFFEN RESOURCES&lt;/LI&gt;&lt;OL class=""&gt;&lt;LI&gt;&lt;DIV class=""&gt;1 richtlijn&lt;/DIV&gt;&lt;/LI&gt;&lt;OL class=""&gt;&lt;LI&gt;&lt;BR /&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="214.141px" height="30px"&gt;Locatie van bron&lt;/TD&gt;&lt;TD width="79.6406px" height="30px"&gt;Richtlijn&lt;/TD&gt;&lt;TD width="100.812px" height="30px"&gt;Status&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="214.141px" height="30px"&gt;&lt;A href="https://embed-cdn.spotifycdn.com/_next/static/chunks/95-555c6bbbb64902b7.js" target="_blank" rel="noopener"&gt;https://embed-cdn.spotifycdn.com/_next/static/chunks/95-555c6bbbb64902b7.js&lt;/A&gt;&lt;/TD&gt;&lt;TD width="79.6406px" height="30px"&gt;script-src&lt;/TD&gt;&lt;TD width="100.812px" height="30px"&gt;geblokkeerd&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;/OL&gt;&lt;/OL&gt;</description>
      <pubDate>Tue, 15 Aug 2023 20:26:45 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Iframe-api-is-not-working-as-documented/m-p/5623278#M10329</guid>
      <dc:creator>marblecompass</dc:creator>
      <dc:date>2023-08-15T20:26:45Z</dc:date>
    </item>
    <item>
      <title>Re: Iframe api is not working as documented</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Iframe-api-is-not-working-as-documented/m-p/5623851#M10338</link>
      <description>&lt;P&gt;Small update,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- Chrome: not playing audio&lt;/P&gt;&lt;P&gt;- Firefox: works correctly&lt;/P&gt;&lt;P&gt;- Safari: works sometimes, sometimes the second episode plays and the first doesn't. Sometimes none play.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Chrome&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm now getting the `Refused to set unsafe header "user-agent"` from&amp;nbsp;&lt;A href="https://embed-cdn.spotifycdn.com/_next/static/chunks/pages/_app-fe18df2bedcb776f.js" target="_blank" rel="noopener"&gt;https://embed-cdn.spotifycdn.com/_next/static/chunks/pages/_app-fe18df2bedcb776f.js&lt;/A&gt;&amp;nbsp;Which I didn't see yesterday in the console log&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;In Safari I see the following errors:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;[Error] Fetch API cannot load &lt;A href="https://apresolve.spotify.com/?type=dealer&amp;amp;type=spclient" target="_blank" rel="noopener"&gt;https://apresolve.spotify.com/?type=dealer&amp;amp;type=spclient&lt;/A&gt; due to access control checks.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(anonieme functie) (_app-fe18df2bedcb776f.js:1:38211)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Q (_app-fe18df2bedcb776f.js:1:389350)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(anonieme functie) (_app-fe18df2bedcb776f.js:1:414283)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;[Error] Fetch API cannot load &lt;A href="https://spclient.wg.spotify.com/melody/unauth/v1/msg/batch" target="_blank" rel="noopener"&gt;https://spclient.wg.spotify.com/melody/unauth/v1/msg/batch&lt;/A&gt; due to access control checks.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(anonieme functie) (_app-fe18df2bedcb776f.js:1:38211)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Q (_app-fe18df2bedcb776f.js:1:389350)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(anonieme functie) (_app-fe18df2bedcb776f.js:1:414283)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;[Error] Fetch API cannot load &lt;A href="https://apresolve.spotify.com/?type=dealer&amp;amp;type=spclient" target="_blank" rel="noopener"&gt;https://apresolve.spotify.com/?type=dealer&amp;amp;type=spclient&lt;/A&gt; due to access control checks.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(anonieme functie) (_app-fe18df2bedcb776f.js:1:38211)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Q (_app-fe18df2bedcb776f.js:1:389350)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(anonieme functie) (_app-fe18df2bedcb776f.js:1:414283)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;[Error] Fetch API cannot load &lt;A href="https://spclient.wg.spotify.com/melody/unauth/v1/msg/batch" target="_blank" rel="noopener"&gt;https://spclient.wg.spotify.com/melody/unauth/v1/msg/batch&lt;/A&gt; due to access control checks.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(anonieme functie) (_app-fe18df2bedcb776f.js:1:38211)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Q (_app-fe18df2bedcb776f.js:1:389350)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(anonieme functie) (_app-fe18df2bedcb776f.js:1:414283)&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 16 Aug 2023 21:29:40 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Iframe-api-is-not-working-as-documented/m-p/5623851#M10338</guid>
      <dc:creator>marblecompass</dc:creator>
      <dc:date>2023-08-16T21:29:40Z</dc:date>
    </item>
    <item>
      <title>Re: Iframe api is not working as documented</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Iframe-api-is-not-working-as-documented/m-p/5624129#M10346</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I work in the team that handles the Spotify embed player we will be fixing the issues with the Iframe API very soon.&lt;/P&gt;&lt;P&gt;Thank you for reaching out and being patient! We had a migration going on internally which took longer than expected and had some issues that we couldn't unfortunately work around. However, as a team that owns the Spotify Embed Player and related offerings like the Iframe API, we will be looking to improve our processes around monitoring the community threads so you don't have to wait too long to hear from us on critical issues.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sushant&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Aug 2023 10:40:28 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Iframe-api-is-not-working-as-documented/m-p/5624129#M10346</guid>
      <dc:creator>sushants</dc:creator>
      <dc:date>2023-08-17T10:40:28Z</dc:date>
    </item>
    <item>
      <title>Re: Iframe api is not working as documented</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Iframe-api-is-not-working-as-documented/m-p/5624209#M10347</link>
      <description>&lt;P&gt;Great news, sushants! Let us know when the bug has been fixed.&lt;/P&gt;&lt;P&gt;For now the library&amp;nbsp;&lt;A href="https://open.spotify.com/embed-podcast/iframe-api/v1" target="_blank"&gt;https://open.spotify.com/embed-podcast/iframe-api/v1&lt;/A&gt;&amp;nbsp;returns a 404.&lt;/P&gt;&lt;P&gt;Seeing that this was built for podcasts, maybe the lib source changed?&lt;/P&gt;&lt;P&gt;Thank you for the time you invested in this issue.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Aug 2023 13:22:22 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Iframe-api-is-not-working-as-documented/m-p/5624209#M10347</guid>
      <dc:creator>florinTAP</dc:creator>
      <dc:date>2023-08-17T13:22:22Z</dc:date>
    </item>
    <item>
      <title>Re: Iframe api is not working as documented</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Iframe-api-is-not-working-as-documented/m-p/5624227#M10348</link>
      <description>&lt;P&gt;florinTAP it seems it's working again.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P data-unlink="true"&gt;Thanks &lt;SPAN class=""&gt;&lt;SPAN class=""&gt;sushants&lt;/SPAN&gt;&amp;nbsp;!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Aug 2023 14:03:34 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Iframe-api-is-not-working-as-documented/m-p/5624227#M10348</guid>
      <dc:creator>marblecompass</dc:creator>
      <dc:date>2023-08-17T14:03:34Z</dc:date>
    </item>
    <item>
      <title>Re: Iframe api is not working as documented</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Iframe-api-is-not-working-as-documented/m-p/5624376#M10349</link>
      <description>&lt;P&gt;Good news indeed! The migration is now almost done, but as consumers of the Iframe API you all should be able to have the Iframe API working as expected.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Aug 2023 17:06:38 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Iframe-api-is-not-working-as-documented/m-p/5624376#M10349</guid>
      <dc:creator>sushants</dc:creator>
      <dc:date>2023-08-17T17:06:38Z</dc:date>
    </item>
    <item>
      <title>Re: Iframe api is not working as documented</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Iframe-api-is-not-working-as-documented/m-p/5625329#M10377</link>
      <description>&lt;P&gt;Is the embed player count as play and stream on analytics data? For music and podcasts?&lt;/P&gt;</description>
      <pubDate>Sat, 19 Aug 2023 21:33:14 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Iframe-api-is-not-working-as-documented/m-p/5625329#M10377</guid>
      <dc:creator>andremacola</dc:creator>
      <dc:date>2023-08-19T21:33:14Z</dc:date>
    </item>
    <item>
      <title>Re: Iframe api is not working as documented</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Iframe-api-is-not-working-as-documented/m-p/5629052#M10499</link>
      <description>&lt;P&gt;Hi — any updates here? Will there be updated iframe embed code, or will existing embeds begin working? I have one working fine on Chrome and Firefox, but not playing on Safari (though it's correctly loading sample length, etc), with the same error as above:&lt;BR /&gt;&lt;BR /&gt;[Error] Fetch API cannot load &lt;A href="https://apresolve.spotify.com/?type=dealer&amp;amp;type=spclient" target="_blank"&gt;https://apresolve.spotify.com/?type=dealer&amp;amp;type=spclient&lt;/A&gt; due to access control checks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would love to report back to my client. Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 29 Aug 2023 13:12:06 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Iframe-api-is-not-working-as-documented/m-p/5629052#M10499</guid>
      <dc:creator>staceypee</dc:creator>
      <dc:date>2023-08-29T13:12:06Z</dc:date>
    </item>
    <item>
      <title>Re: Iframe api is not working as documented</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Iframe-api-is-not-working-as-documented/m-p/5629342#M10517</link>
      <description>&lt;P&gt;Still not working properly. Sometimes it loads up the embedded player - often not.&lt;/P&gt;&lt;P&gt;Message received in Chrome developer tool: "to set unsafe header "user-agent"".&lt;/P&gt;</description>
      <pubDate>Wed, 30 Aug 2023 06:03:22 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Iframe-api-is-not-working-as-documented/m-p/5629342#M10517</guid>
      <dc:creator>jotus</dc:creator>
      <dc:date>2023-08-30T06:03:22Z</dc:date>
    </item>
    <item>
      <title>Re: Iframe api is not working as documented</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Iframe-api-is-not-working-as-documented/m-p/5631722#M10628</link>
      <description>&lt;P&gt;Also seeing&amp;nbsp;&lt;STRONG&gt;Refused to set unsafe header "user-agent"&amp;nbsp;&lt;/STRONG&gt;in console. Please advise.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Sep 2023 02:54:12 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Iframe-api-is-not-working-as-documented/m-p/5631722#M10628</guid>
      <dc:creator>matttaylor8910</dc:creator>
      <dc:date>2023-09-05T02:54:12Z</dc:date>
    </item>
    <item>
      <title>Re: Iframe api is not working as documented</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Iframe-api-is-not-working-as-documented/m-p/5632713#M10652</link>
      <description>&lt;P&gt;i am also getting this.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Sep 2023 03:23:38 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Iframe-api-is-not-working-as-documented/m-p/5632713#M10652</guid>
      <dc:creator>spacelampsix</dc:creator>
      <dc:date>2023-09-07T03:23:38Z</dc:date>
    </item>
    <item>
      <title>Re: Iframe api is not working as documented</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Iframe-api-is-not-working-as-documented/m-p/5650071#M11045</link>
      <description>&lt;P&gt;Hi, Is this really fixed? It's still not working on my site or the Spotify iFrame API page: &lt;A href="https://developer.spotify.com/documentation/embeds/tutorials/using-the-iframe-api" target="_blank"&gt;https://developer.spotify.com/documentation/embeds/tutorials/using-the-iframe-api&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Oct 2023 17:54:08 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Iframe-api-is-not-working-as-documented/m-p/5650071#M11045</guid>
      <dc:creator>jeremilashua</dc:creator>
      <dc:date>2023-10-10T17:54:08Z</dc:date>
    </item>
    <item>
      <title>Re: Iframe api is not working as documented</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Iframe-api-is-not-working-as-documented/m-p/6051805#M13779</link>
      <description>&lt;P&gt;Unsafe-eval still seem to be needed, any updates on this?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 May 2024 08:01:33 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Iframe-api-is-not-working-as-documented/m-p/6051805#M13779</guid>
      <dc:creator>icew1nd</dc:creator>
      <dc:date>2024-05-06T08:01:33Z</dc:date>
    </item>
    <item>
      <title>Re: Iframe api is not working as documented</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Iframe-api-is-not-working-as-documented/m-p/6184890#M14428</link>
      <description>&lt;P&gt;I'm still getting the error in Safari browser, when I set the preferVideo option.&lt;BR /&gt;"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15"&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Fetch API cannot load &lt;A href="https://apresolve.spotify.com/?type=dealer&amp;amp;type=spclient" target="_blank"&gt;https://apresolve.spotify.com/?type=dealer&amp;amp;type=spclient&lt;/A&gt; due to access control checks.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jul 2024 16:14:32 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Iframe-api-is-not-working-as-documented/m-p/6184890#M14428</guid>
      <dc:creator>sebas932</dc:creator>
      <dc:date>2024-07-10T16:14:32Z</dc:date>
    </item>
  </channel>
</rss>

