<?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: Issue with Web Playback SDK API Access for Spotify Premium in Spotify for Developers</title>
    <link>https://community.spotify.com/t5/Spotify-for-Developers/Issue-with-Web-Playback-SDK-API-Access-for-Spotify-Premium/m-p/5938400#M13119</link>
    <description>&lt;P&gt;So, you did follow &lt;A href="https://developer.spotify.com/documentation/web-playback-sdk/tutorials/getting-started" target="_blank" rel="noopener"&gt;this guide&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;and used the token you got by pressing the button?&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 12 Mar 2024 09:34:51 GMT</pubDate>
    <dc:creator>Ximzend</dc:creator>
    <dc:date>2024-03-12T09:34:51Z</dc:date>
    <item>
      <title>Issue with Web Playback SDK API Access for Spotify Premium</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Issue-with-Web-Playback-SDK-API-Access-for-Spotify-Premium/m-p/5938028#M13114</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Plan&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Premium Mini&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Country India&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Device&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Windows&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Operating System&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Windows 10&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;My Question or Issue&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Recently, I upgraded to Spotify Premium with the intention of utilizing the Web Playback SDK API for my web page. However, upon attempting to integrate the API into my project, I encountered an error message stating: "This functionality is restricted to premium users only."&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Why i am getting like this even i have taken Premium?&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Mar 2024 04:06:32 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Issue-with-Web-Playback-SDK-API-Access-for-Spotify-Premium/m-p/5938028#M13114</guid>
      <dc:creator>Tranquil_0</dc:creator>
      <dc:date>2024-03-12T04:06:32Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Web Playback SDK API Access for Spotify Premium</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Issue-with-Web-Playback-SDK-API-Access-for-Spotify-Premium/m-p/5938143#M13116</link>
      <description>&lt;P&gt;I guess you get this error message because you are using Client Credentials, and that is not supposed by the Web Playback SDK.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Mar 2024 06:05:47 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Issue-with-Web-Playback-SDK-API-Access-for-Spotify-Premium/m-p/5938143#M13116</guid>
      <dc:creator>Ximzend</dc:creator>
      <dc:date>2024-03-12T06:05:47Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Web Playback SDK API Access for Spotify Premium</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Issue-with-Web-Playback-SDK-API-Access-for-Spotify-Premium/m-p/5938176#M13117</link>
      <description>&lt;P&gt;Hi, Thanks for the response, and i am using the example code which is given my spotify itself, even i am getting the same error&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;BR /&gt;&amp;lt;html&amp;gt;&lt;BR /&gt;&amp;lt;head&amp;gt;&lt;BR /&gt;&amp;lt;title&amp;gt;Spotify Web Playback SDK Quick Start&amp;lt;/title&amp;gt;&lt;BR /&gt;&amp;lt;/head&amp;gt;&lt;BR /&gt;&amp;lt;body&amp;gt;&lt;BR /&gt;&amp;lt;h1&amp;gt;Spotify Web Playback SDK Quick Start&amp;lt;/h1&amp;gt;&lt;BR /&gt;&amp;lt;button id="togglePlay"&amp;gt;Toggle Play&amp;lt;/button&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;script src="&lt;A href="https://sdk.scdn.co/spotify-player.js" target="_blank"&gt;https://sdk.scdn.co/spotify-player.js&lt;/A&gt;"&amp;gt;&amp;lt;/script&amp;gt;&lt;BR /&gt;&amp;lt;script&amp;gt;&lt;BR /&gt;window.onSpotifyWebPlaybackSDKReady = () =&amp;gt; {&lt;BR /&gt;const token = '[My access token]';&lt;BR /&gt;const player = new Spotify.Player({&lt;BR /&gt;name: 'Web Playback SDK Quick Start Player',&lt;BR /&gt;getOAuthToken: cb =&amp;gt; { cb(token); },&lt;BR /&gt;volume: 0.5&lt;BR /&gt;});&lt;/P&gt;&lt;P&gt;// Ready&lt;BR /&gt;player.addListener('ready', ({ device_id }) =&amp;gt; {&lt;BR /&gt;console.log('Ready with Device ID', device_id);&lt;BR /&gt;});&lt;/P&gt;&lt;P&gt;// Not Ready&lt;BR /&gt;player.addListener('not_ready', ({ device_id }) =&amp;gt; {&lt;BR /&gt;console.log('Device ID has gone offline', device_id);&lt;BR /&gt;});&lt;/P&gt;&lt;P&gt;player.addListener('initialization_error', ({ message }) =&amp;gt; {&lt;BR /&gt;console.error(message);&lt;BR /&gt;});&lt;/P&gt;&lt;P&gt;player.addListener('authentication_error', ({ message }) =&amp;gt; {&lt;BR /&gt;console.error(message);&lt;BR /&gt;});&lt;/P&gt;&lt;P&gt;player.addListener('account_error', ({ message }) =&amp;gt; {&lt;BR /&gt;console.error(message);&lt;BR /&gt;});&lt;/P&gt;&lt;P&gt;document.getElementById('togglePlay').onclick = function() {&lt;BR /&gt;player.togglePlay();&lt;BR /&gt;};&lt;/P&gt;&lt;P&gt;player.connect();&lt;BR /&gt;}&lt;BR /&gt;&amp;lt;/script&amp;gt;&lt;BR /&gt;&amp;lt;/body&amp;gt;&lt;BR /&gt;&amp;lt;/html&amp;gt;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Mar 2024 06:35:44 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Issue-with-Web-Playback-SDK-API-Access-for-Spotify-Premium/m-p/5938176#M13117</guid>
      <dc:creator>Tranquil_0</dc:creator>
      <dc:date>2024-03-12T06:35:44Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Web Playback SDK API Access for Spotify Premium</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Issue-with-Web-Playback-SDK-API-Access-for-Spotify-Premium/m-p/5938400#M13119</link>
      <description>&lt;P&gt;So, you did follow &lt;A href="https://developer.spotify.com/documentation/web-playback-sdk/tutorials/getting-started" target="_blank" rel="noopener"&gt;this guide&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;and used the token you got by pressing the button?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Mar 2024 09:34:51 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Issue-with-Web-Playback-SDK-API-Access-for-Spotify-Premium/m-p/5938400#M13119</guid>
      <dc:creator>Ximzend</dc:creator>
      <dc:date>2024-03-12T09:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Web Playback SDK API Access for Spotify Premium</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Issue-with-Web-Playback-SDK-API-Access-for-Spotify-Premium/m-p/5938545#M13121</link>
      <description>&lt;P&gt;The next step is to integrate&amp;nbsp;&lt;A href="https://developer.spotify.com/documentation/web-api/concepts/authorization" target="_blank" rel="noopener"&gt;an&amp;nbsp;authorization flow&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Mar 2024 11:08:35 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Issue-with-Web-Playback-SDK-API-Access-for-Spotify-Premium/m-p/5938545#M13121</guid>
      <dc:creator>Ximzend</dc:creator>
      <dc:date>2024-03-12T11:08:35Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Web Playback SDK API Access for Spotify Premium</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Issue-with-Web-Playback-SDK-API-Access-for-Spotify-Premium/m-p/5942696#M13155</link>
      <description>&lt;P&gt;yeah, I have used the token, and followed the guidance, but i am getting the same error like "This functionality is restricted to premium users only"&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2024 09:35:52 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Issue-with-Web-Playback-SDK-API-Access-for-Spotify-Premium/m-p/5942696#M13155</guid>
      <dc:creator>Tranquil_0</dc:creator>
      <dc:date>2024-03-14T09:35:52Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Web Playback SDK API Access for Spotify Premium</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Issue-with-Web-Playback-SDK-API-Access-for-Spotify-Premium/m-p/5942712#M13156</link>
      <description>&lt;P&gt;does this feature is not applicable for mini premium users?&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2024 09:54:52 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Issue-with-Web-Playback-SDK-API-Access-for-Spotify-Premium/m-p/5942712#M13156</guid>
      <dc:creator>Tranquil_0</dc:creator>
      <dc:date>2024-03-14T09:54:52Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Web Playback SDK API Access for Spotify Premium</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Issue-with-Web-Playback-SDK-API-Access-for-Spotify-Premium/m-p/5942811#M13158</link>
      <description>&lt;P&gt;I don't know. You can try if playing in browser works at&amp;nbsp;&lt;A href="https://nelson.glitch.me/" target="_blank"&gt;https://nelson.glitch.me/&lt;/A&gt; or &lt;A href="https://nelson-v2.glitch.me/" target="_blank"&gt;https://nelson-v2.glitch.me/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;If that doesn't work, it's caused by your subscription.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2024 11:09:59 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Issue-with-Web-Playback-SDK-API-Access-for-Spotify-Premium/m-p/5942811#M13158</guid>
      <dc:creator>Ximzend</dc:creator>
      <dc:date>2024-03-14T11:09:59Z</dc:date>
    </item>
  </channel>
</rss>

