Spotify WebApi Scopes in Python












0














Trying to make a program to read and modify my spotify playlists in python. Currently getting a 403 error due to not having the proper scopes (just trying to read my recently played to understand scopes). I know which scopes I need, my issue is where/how to add them. I"m assuming I add it to the get request for the token, but again, I don't know how. I've never seen the syntax in python, and I cannot use Spotipy.



headers = {'Authorization': "Basic " + auth64}
data = {"grant_type":"client_credentials"}

# submit the request
url = "https://accounts.spotify.com/api/token"
r = requests.post(url, headers = headers, data = data)


Any help would be appreciated, I've tried just adding the scopes into the url and the header with no luck.










share|improve this question






















  • Welcome. Please see the Authorization code flow here: spotipy.readthedocs.io/en/latest/#authorized-requests You need to set your scope(s) at the point of the user authorising your app with Spotify. If your user is already Auth'd and they don't have a particular scope needed then the current token you have won't work. They will have to re-auth your app to get a token that allows said scope.
    – scgough
    Nov 23 at 9:21


















0














Trying to make a program to read and modify my spotify playlists in python. Currently getting a 403 error due to not having the proper scopes (just trying to read my recently played to understand scopes). I know which scopes I need, my issue is where/how to add them. I"m assuming I add it to the get request for the token, but again, I don't know how. I've never seen the syntax in python, and I cannot use Spotipy.



headers = {'Authorization': "Basic " + auth64}
data = {"grant_type":"client_credentials"}

# submit the request
url = "https://accounts.spotify.com/api/token"
r = requests.post(url, headers = headers, data = data)


Any help would be appreciated, I've tried just adding the scopes into the url and the header with no luck.










share|improve this question






















  • Welcome. Please see the Authorization code flow here: spotipy.readthedocs.io/en/latest/#authorized-requests You need to set your scope(s) at the point of the user authorising your app with Spotify. If your user is already Auth'd and they don't have a particular scope needed then the current token you have won't work. They will have to re-auth your app to get a token that allows said scope.
    – scgough
    Nov 23 at 9:21
















0












0








0







Trying to make a program to read and modify my spotify playlists in python. Currently getting a 403 error due to not having the proper scopes (just trying to read my recently played to understand scopes). I know which scopes I need, my issue is where/how to add them. I"m assuming I add it to the get request for the token, but again, I don't know how. I've never seen the syntax in python, and I cannot use Spotipy.



headers = {'Authorization': "Basic " + auth64}
data = {"grant_type":"client_credentials"}

# submit the request
url = "https://accounts.spotify.com/api/token"
r = requests.post(url, headers = headers, data = data)


Any help would be appreciated, I've tried just adding the scopes into the url and the header with no luck.










share|improve this question













Trying to make a program to read and modify my spotify playlists in python. Currently getting a 403 error due to not having the proper scopes (just trying to read my recently played to understand scopes). I know which scopes I need, my issue is where/how to add them. I"m assuming I add it to the get request for the token, but again, I don't know how. I've never seen the syntax in python, and I cannot use Spotipy.



headers = {'Authorization': "Basic " + auth64}
data = {"grant_type":"client_credentials"}

# submit the request
url = "https://accounts.spotify.com/api/token"
r = requests.post(url, headers = headers, data = data)


Any help would be appreciated, I've tried just adding the scopes into the url and the header with no luck.







python python-requests spotify






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 22 at 16:28









Brenblaze

1




1












  • Welcome. Please see the Authorization code flow here: spotipy.readthedocs.io/en/latest/#authorized-requests You need to set your scope(s) at the point of the user authorising your app with Spotify. If your user is already Auth'd and they don't have a particular scope needed then the current token you have won't work. They will have to re-auth your app to get a token that allows said scope.
    – scgough
    Nov 23 at 9:21




















  • Welcome. Please see the Authorization code flow here: spotipy.readthedocs.io/en/latest/#authorized-requests You need to set your scope(s) at the point of the user authorising your app with Spotify. If your user is already Auth'd and they don't have a particular scope needed then the current token you have won't work. They will have to re-auth your app to get a token that allows said scope.
    – scgough
    Nov 23 at 9:21


















Welcome. Please see the Authorization code flow here: spotipy.readthedocs.io/en/latest/#authorized-requests You need to set your scope(s) at the point of the user authorising your app with Spotify. If your user is already Auth'd and they don't have a particular scope needed then the current token you have won't work. They will have to re-auth your app to get a token that allows said scope.
– scgough
Nov 23 at 9:21






Welcome. Please see the Authorization code flow here: spotipy.readthedocs.io/en/latest/#authorized-requests You need to set your scope(s) at the point of the user authorising your app with Spotify. If your user is already Auth'd and they don't have a particular scope needed then the current token you have won't work. They will have to re-auth your app to get a token that allows said scope.
– scgough
Nov 23 at 9:21



















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53435018%2fspotify-webapi-scopes-in-python%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53435018%2fspotify-webapi-scopes-in-python%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Berounka

Different font size/position of beamer's navigation symbols template's content depending on regular/plain...

Sphinx de Gizeh