<?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: Redirect URI needed? in Spotify for Developers</title>
    <link>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5069439#M1515</link>
    <description>&lt;P&gt;Awesome it worked! Thanks so much.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;On a related note, I tried following &lt;A href="https://developer.spotify.com/documentation/web-api/quick-start/" target="_self"&gt;Spotify's Quick Start directions&lt;/A&gt; for setting up a server-side application with Node.js but I'm getting an error at the "Running the Application" step. I can get to step 3 of that section but when I click on the login button the browser goes to a page that says "INVALID_CLIENT: Invalid redirect URI." In the docs it looks like that step should take me to a login page where I can input my Spotify username and password.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas what I'm doing wrong?&lt;/P&gt;</description>
    <pubDate>Tue, 10 Nov 2020 15:52:57 GMT</pubDate>
    <dc:creator>burnssh</dc:creator>
    <dc:date>2020-11-10T15:52:57Z</dc:date>
    <item>
      <title>Redirect URI needed?</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5067419#M1495</link>
      <description>&lt;P&gt;&lt;STRONG&gt;I just started working with Spotify's Web API and am using Python/Spotipy to retrieve data. If I want to retrieve data related specifically to my personal account (like recently played tracks or saved albums), do I need to set a redirect URI in my application settings? If so, what's a quick and easy URI that I could use?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm not building a public facing application as of now - I just want to retrieve historical data about my own Spotify usage. So I'm following the examples posted on Spotipy's GitHub (like this one: &lt;A href="https://github.com/plamere/spotipy/blob/master/examples/user_playlists.py)" target="_blank" rel="noopener"&gt;https://github.com/plamere/spotipy/blob/master/examples/user_playlists.py)&lt;/A&gt;&amp;nbsp;but I'm getting the following error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"SpotifyOauthError: No redirect_uri. Pass it or set a SPOTIPY_REDIRECT_URI environment variable."&lt;/P&gt;</description>
      <pubDate>Sat, 07 Nov 2020 01:19:42 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5067419#M1495</guid>
      <dc:creator>burnssh</dc:creator>
      <dc:date>2020-11-07T01:19:42Z</dc:date>
    </item>
    <item>
      <title>Re: Redirect URI needed?</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5068434#M1507</link>
      <description>&lt;P&gt;If you are using spotipy, the redirect URI doesn't matter, just use&amp;nbsp;&lt;STRONG&gt;&lt;SPAN&gt;http://localhost/&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Spotipy will display a URL, open that in a browser and copy and paste back the response code.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Nov 2020 09:34:11 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5068434#M1507</guid>
      <dc:creator>murraypaul</dc:creator>
      <dc:date>2020-11-09T09:34:11Z</dc:date>
    </item>
    <item>
      <title>Re: Redirect URI needed?</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5069394#M1513</link>
      <description>&lt;P&gt;Hi murraypaul and thanks for replying! I tried your suggestion to use "&lt;A href="http://localhost/&amp;quot;" target="_blank" rel="noopener"&gt;http://localhost/"&lt;/A&gt;&amp;nbsp;as the redirect URI (and I double checked to make sure that my app settings have the same URI) but I get an error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="localhost-error.png" style="width: 705px;"&gt;&lt;img src="https://community.spotify.com/t5/image/serverpage/image-id/122719i8CA189A850B86EBE/image-size/large?v=v2&amp;amp;px=999" role="button" title="localhost-error.png" alt="localhost-error.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm just going off of the example under "Quick start" in &lt;A href="https://spotipy.readthedocs.io/en/2.16.1/" target="_self"&gt;the docs&lt;/A&gt;&amp;nbsp;and running the following code in a Jupyter Notebook:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;import spotipy
from spotipy.oauth2 import SpotifyOAuth

scope = "user-library-read"

sp = spotipy.Spotify(auth_manager=SpotifyOAuth(scope=scope))

results = sp.current_user_saved_tracks()
for idx, item in enumerate(results['items']):
    track = item['track']
    print(idx, track['artists'][0]['name'], " – ", track['name'])&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've tried other things, like using "&lt;A href="http://localhost:8888/callback/&amp;quot;" target="_blank" rel="noopener"&gt;http://localhost:8888/callback/"&lt;/A&gt;&amp;nbsp;as the URI but nothing seems to work. I keep getting errors.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Nov 2020 14:57:32 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5069394#M1513</guid>
      <dc:creator>burnssh</dc:creator>
      <dc:date>2020-11-10T14:57:32Z</dc:date>
    </item>
    <item>
      <title>Re: Redirect URI needed?</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5069426#M1514</link>
      <description>&lt;P&gt;You will get an error, but you just need to capture the URL you are redirected to, and give that to Spotipy when it asks for it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What should happen is:&lt;/P&gt;&lt;P&gt;a) Spotipy opens a browser and connects to the authorisation service.&lt;/P&gt;&lt;P&gt;b) The authorisation service redirects your browser to &lt;A href="http://localhost?code=.." target="_blank" rel="noopener"&gt;http://localhost?code=..&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;c) Spotipy shows a prompt: "Enter the URL you were redirected to:"&lt;/P&gt;&lt;P&gt;d) You copy the entire URL from your browser address bar and paste it into the console window python is running in.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It is quite clunky, but you only need to do it the first time you request a new type of access, spotipy will cache the responses.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Alternatively, if you have a publicly addressable IP, you can specify your redirect URL as &lt;A href="http://hostname.domain:port/," target="_blank"&gt;http://hostname.domain:port/,&lt;/A&gt;&amp;nbsp;and spotipy will spin up a temporary web server on that port to handle the redirect. I have not used that myself, however.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Nov 2020 15:44:23 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5069426#M1514</guid>
      <dc:creator>murraypaul</dc:creator>
      <dc:date>2020-11-10T15:44:23Z</dc:date>
    </item>
    <item>
      <title>Re: Redirect URI needed?</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5069439#M1515</link>
      <description>&lt;P&gt;Awesome it worked! Thanks so much.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;On a related note, I tried following &lt;A href="https://developer.spotify.com/documentation/web-api/quick-start/" target="_self"&gt;Spotify's Quick Start directions&lt;/A&gt; for setting up a server-side application with Node.js but I'm getting an error at the "Running the Application" step. I can get to step 3 of that section but when I click on the login button the browser goes to a page that says "INVALID_CLIENT: Invalid redirect URI." In the docs it looks like that step should take me to a login page where I can input my Spotify username and password.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas what I'm doing wrong?&lt;/P&gt;</description>
      <pubDate>Tue, 10 Nov 2020 15:52:57 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5069439#M1515</guid>
      <dc:creator>burnssh</dc:creator>
      <dc:date>2020-11-10T15:52:57Z</dc:date>
    </item>
    <item>
      <title>Re: Redirect URI needed?</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5455203#M6996</link>
      <description>&lt;P&gt;Make sure the URL you added as redirect_uri is included in your&amp;nbsp;Redirect URIs.&lt;/P&gt;&lt;P&gt;1 - Go to your dashboard&lt;/P&gt;&lt;P&gt;2 - Click on edit settings&lt;/P&gt;&lt;P&gt;3 - Add the URL under Redirect URIs, press Add&lt;/P&gt;&lt;P&gt;4 - Save&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 02:10:59 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5455203#M6996</guid>
      <dc:creator>viniciusponde</dc:creator>
      <dc:date>2022-11-09T02:10:59Z</dc:date>
    </item>
    <item>
      <title>Re: Redirect URI needed?</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5511231#M8109</link>
      <description>&lt;P&gt;For posterity, I was stuck on this issue until I tried "&lt;A href="http://localhost" target="_blank"&gt;http://localhost&lt;/A&gt;" instead of "&lt;A href="http://localhost/" target="_blank"&gt;http://localhost/&lt;/A&gt;". The latter was taking me to a page that said it was an invalid URL, while the former took me to a page where I could click on a button allowing the app to have access to stuff, idk what it said but you get the gist. When using the former, it lined up with the other comments (click yes, copy paste the new url into python, and smile cause it works)&lt;/P&gt;</description>
      <pubDate>Sat, 25 Feb 2023 06:36:27 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5511231#M8109</guid>
      <dc:creator>db5930</dc:creator>
      <dc:date>2023-02-25T06:36:27Z</dc:date>
    </item>
    <item>
      <title>Re: Redirect URI needed?</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5511272#M8110</link>
      <description>&lt;P&gt;The redirect URI needs to include a port number, for example &lt;A href="https://localhost:8080" target="_blank"&gt;https://localhost:8080&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 25 Feb 2023 08:28:53 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5511272#M8110</guid>
      <dc:creator>Ximzend</dc:creator>
      <dc:date>2023-02-25T08:28:53Z</dc:date>
    </item>
    <item>
      <title>Re: Redirect URI needed?</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5512629#M8129</link>
      <description>&lt;P&gt;very helpful, thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;here's how I did it for username:&amp;nbsp;&lt;/P&gt;&lt;P&gt;import os&lt;/P&gt;&lt;P&gt;import spotipy&lt;BR /&gt;from spotipy.oauth2 import SpotifyClientCredentials&lt;/P&gt;&lt;P&gt;cid = &amp;lt;YOUR CLIENT ID&amp;gt;&lt;/P&gt;&lt;P&gt;secret = &amp;lt;YOUR CLIENT SECRET&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ccm = SpotifyClientCredentials(client_id = cid, client_secret = secret)&lt;BR /&gt;sp = spotipy.Spotify(client_credentials_manager = ccm)&lt;/P&gt;&lt;P&gt;os.environ["SPOTIPY_CLIENT_ID"] = cid&lt;BR /&gt;os.environ["SPOTIPY_CLIENT_SECRET"] = secret&lt;BR /&gt;os.environ["SPOTIPY_REDIRECT_URI"] = "&lt;A href="https://localhost:8080" target="_blank"&gt;https://localhost:8080&lt;/A&gt;"&lt;/P&gt;&lt;P&gt;scope = 'user-library-read'&lt;BR /&gt;username = &amp;lt;YOUR USERNAME HERE&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;token = spotipy.util.prompt_for_user_token(username, scope)&lt;/P&gt;&lt;P&gt;if token:&lt;BR /&gt;spotipy_obj = spotipy.Spotify(auth=token)&lt;BR /&gt;saved_tracks_resp = spotipy_obj.current_user_saved_tracks(limit=50)&lt;BR /&gt;else:&lt;BR /&gt;print('Couldn\'t get token for that username')&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2023 00:35:44 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5512629#M8129</guid>
      <dc:creator>victoryamaykin</dc:creator>
      <dc:date>2023-02-28T00:35:44Z</dc:date>
    </item>
    <item>
      <title>Re: Redirect URI needed?</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5514239#M8177</link>
      <description>&lt;P&gt;Do you have any tips for running it in google colab for&amp;nbsp;&lt;SPAN&gt;SPOTIPY_REDIRECT_URI&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2023 21:31:38 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5514239#M8177</guid>
      <dc:creator>prady17</dc:creator>
      <dc:date>2023-03-02T21:31:38Z</dc:date>
    </item>
    <item>
      <title>Re: Redirect URI needed?</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5514523#M8182</link>
      <description>&lt;P&gt;To use Spotipy in Google Colab, you can follow the steps in this Stack Overflow answer: &lt;A href="https://stackoverflow.com/a/68651136/7111585" target="_blank"&gt;https://stackoverflow.com/a/68651136/7111585&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Mar 2023 11:05:22 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5514523#M8182</guid>
      <dc:creator>Ximzend</dc:creator>
      <dc:date>2023-03-03T11:05:22Z</dc:date>
    </item>
    <item>
      <title>Re: Redirect URI needed?</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5582699#M9255</link>
      <description>&lt;P&gt;i deployed my app using github and now this is not working, ive tried adding the github deployed link to the list or redirect uri but its still not working please help &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; , in vscode if i use "const redirectUri = window.location.origin" then it works fine but this doesnt work after the app is deployed using github pages.&lt;BR /&gt;these are the Redirect URIs in my spotify app settings&lt;BR /&gt;&lt;A href="http://127.0.0.1:5500/" target="_blank"&gt;http://127.0.0.1:5500&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://127.0.0.1:5500" target="_blank"&gt;http://127.0.0.1:5500&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://localhost:8888/callback" target="_blank"&gt;http://localhost:8888/callback&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://127.0.0.1:5500/callback" target="_blank"&gt;http://127.0.0.1:5500/callback&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://localhost:5500/callback" target="_blank"&gt;http://localhost:5500/callback&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 May 2023 19:16:32 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5582699#M9255</guid>
      <dc:creator>kaiokxn</dc:creator>
      <dc:date>2023-05-17T19:16:32Z</dc:date>
    </item>
    <item>
      <title>Re: Redirect URI needed?</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5597244#M9645</link>
      <description>&lt;P&gt;I recommend you try to use&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;http://google.com/callback/&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 17 Jun 2023 09:08:56 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5597244#M9645</guid>
      <dc:creator>mikazylay</dc:creator>
      <dc:date>2023-06-17T09:08:56Z</dc:date>
    </item>
    <item>
      <title>Re: Redirect URI needed?</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5597246#M9646</link>
      <description>&lt;P&gt;Yes, mikazylay, but in combination with open_browser=False .&lt;/P&gt;</description>
      <pubDate>Sat, 17 Jun 2023 10:24:05 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5597246#M9646</guid>
      <dc:creator>Ximzend</dc:creator>
      <dc:date>2023-06-17T10:24:05Z</dc:date>
    </item>
    <item>
      <title>Re: Redirect URI needed?</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5608768#M9967</link>
      <description>&lt;P&gt;I am having same problem, in vscode redirectURL&lt;SPAN&gt;&amp;nbsp;works fine but this doesnt works after the app is deployed using firebase. Did you find any solution??&lt;span class="lia-unicode-emoji" title=":downcast_face_with_sweat:"&gt;😓&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jul 2023 01:39:37 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5608768#M9967</guid>
      <dc:creator>ishaansinghal</dc:creator>
      <dc:date>2023-07-13T01:39:37Z</dc:date>
    </item>
    <item>
      <title>Re: Redirect URI needed?</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5619149#M10223</link>
      <description>&lt;P&gt;You can use&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;https://example.com&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;and will direct you to a page where you have to agree to some terms , once you click on agree it will redirect you to a page where you have to copy the url and past it in your console where asking you for a redirected url, and make sure you have all params as following&amp;nbsp; :&lt;/P&gt;&lt;PRE&gt;sp = spotipy.Spotify(&lt;BR /&gt;    &lt;SPAN&gt;auth_manager&lt;/SPAN&gt;=SpotifyOAuth(&lt;BR /&gt;        &lt;SPAN&gt;client_id&lt;/SPAN&gt;=client_id&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;        &lt;SPAN&gt;client_secret&lt;/SPAN&gt;=client_secret&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;        &lt;SPAN&gt;redirect_uri&lt;/SPAN&gt;=&lt;SPAN&gt;"https://example.com"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;        &lt;SPAN&gt;scope&lt;/SPAN&gt;=&lt;SPAN&gt;"playlist-modify-private"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;        &lt;SPAN&gt;show_dialog&lt;/SPAN&gt;=&lt;SPAN&gt;True,&lt;BR /&gt;&lt;/SPAN&gt;        &lt;SPAN&gt;cache_path&lt;/SPAN&gt;=&lt;SPAN&gt;"token.txt"&lt;BR /&gt;&lt;/SPAN&gt;    ))&lt;/PRE&gt;</description>
      <pubDate>Sat, 05 Aug 2023 16:15:54 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5619149#M10223</guid>
      <dc:creator>ouriemchi4dev</dc:creator>
      <dc:date>2023-08-05T16:15:54Z</dc:date>
    </item>
    <item>
      <title>Re: Redirect URI needed?</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5625374#M10380</link>
      <description>&lt;P&gt;Where to get these redirect url.. ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 20 Aug 2023 04:47:03 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5625374#M10380</guid>
      <dc:creator>Ved18</dc:creator>
      <dc:date>2023-08-20T04:47:03Z</dc:date>
    </item>
    <item>
      <title>Re: Redirect URI needed?</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5625375#M10381</link>
      <description>&lt;P&gt;Where I can get the redirect url.?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 20 Aug 2023 04:50:24 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5625375#M10381</guid>
      <dc:creator>Ved18</dc:creator>
      <dc:date>2023-08-20T04:50:24Z</dc:date>
    </item>
    <item>
      <title>Re: Redirect URI needed?</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5920258#M12998</link>
      <description>&lt;P&gt;Does it have to be local host only? I got the app working on local I want to deploy it using heroku but it doesn't let me. When I set redirect api to prod I get&amp;nbsp;&lt;SPAN&gt;INVALID_CLIENT: Invalid redirect URI. Do I need to get my app reviewed by spotify first?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 03 Mar 2024 00:00:19 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5920258#M12998</guid>
      <dc:creator>mertayd</dc:creator>
      <dc:date>2024-03-03T00:00:19Z</dc:date>
    </item>
    <item>
      <title>Re: Redirect URI needed?</title>
      <link>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5920721#M13001</link>
      <description>&lt;P&gt;If you deploy to a online server, you'll need to change the redirect URI in your code to one point to the web address, and add it to the developers dashboard of your app (like you did when you were testing it on your computer).&lt;/P&gt;</description>
      <pubDate>Sun, 03 Mar 2024 07:58:52 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Spotify-for-Developers/Redirect-URI-needed/m-p/5920721#M13001</guid>
      <dc:creator>Ximzend</dc:creator>
      <dc:date>2024-03-03T07:58:52Z</dc:date>
    </item>
  </channel>
</rss>

