0d7878f84f
- Rename secret_key to client_secret - Fetch values from new fields - Authorization Code: Exchange code by token sending id and secret in body instead of Base64 header
130 lines
4.2 KiB
HTML
130 lines
4.2 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Example of the Implicit Grant flow with Spotify</title>
|
|
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
|
|
<style type="text/css">
|
|
#login, #loggedin {
|
|
display: none;
|
|
}
|
|
.text-overflow {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
width: 500px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<div id="login">
|
|
<h1>This is an example of the Implicit Grant flow</h1>
|
|
<button id="login-button" class="btn btn-primary">Log in with Spotify</button>
|
|
</div>
|
|
<div id="loggedin">
|
|
<div id="user-profile">
|
|
</div>
|
|
<div id="oauth">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script id="user-profile-template" type="text/x-handlebars-template">
|
|
<h1>Logged in as {{display_name}}</h1>
|
|
<div class="media">
|
|
<div class="pull-left">
|
|
<img class="media-object" width="150" src="{{images.0.url}}" />
|
|
</div>
|
|
<div class="media-body">
|
|
<dl class="dl-horizontal">
|
|
<dt>Display name</dt><dd>{{display_name}}</dd>
|
|
<dt>Id</dt><dd>{{id}}</dd>
|
|
<dt>Email</dt><dd>{{email}}</dd>
|
|
<dt>Spotify URI</dt><dd><a href="{{external_urls.spotify}}">{{external_urls.spotify}}</a></dd>
|
|
<dt>Link</dt><dd><a href="{{href}}">{{href}}</a></dd>
|
|
<dt>Profile Image</dt><dd><a href="{{images.0.url}}">{{images.0.url}}</a></dd>
|
|
</dl>
|
|
</div>
|
|
</div>
|
|
</script>
|
|
|
|
<script id="oauth-template" type="text/x-handlebars-template">
|
|
<h2>oAuth info</h2>
|
|
<dl class="dl-horizontal">
|
|
<dt>Access token</dt><dd class="text-overflow">{{access_token}}</dd>
|
|
</dl>
|
|
</script>
|
|
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/handlebars.js/2.0.0-alpha.1/handlebars.min.js"></script>
|
|
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
|
|
<script>
|
|
(function() {
|
|
|
|
/**
|
|
* Obtains parameters from the hash of the URL
|
|
* @return Object
|
|
*/
|
|
function getHashParams() {
|
|
var hashParams = {};
|
|
var e, r = /([^&;=]+)=?([^&;]*)/g,
|
|
q = window.location.hash.substring(1);
|
|
while ( e = r.exec(q)) {
|
|
hashParams[e[1]] = decodeURIComponent(e[2]);
|
|
}
|
|
return hashParams;
|
|
}
|
|
|
|
var userProfileSource = document.getElementById('user-profile-template').innerHTML,
|
|
userProfileTemplate = Handlebars.compile(userProfileSource),
|
|
userProfilePlaceholder = document.getElementById('user-profile');
|
|
|
|
oauthSource = document.getElementById('oauth-template').innerHTML,
|
|
oauthTemplate = Handlebars.compile(oauthSource),
|
|
oauthPlaceholder = document.getElementById('oauth');
|
|
|
|
var params = getHashParams();
|
|
|
|
var access_token = params.access_token;
|
|
|
|
oauthPlaceholder.innerHTML = oauthTemplate({
|
|
access_token: access_token
|
|
});
|
|
|
|
if (access_token) {
|
|
$.ajax({
|
|
url: 'https://api.spotify.com/v1/me',
|
|
headers: {
|
|
'Authorization': 'Bearer ' + access_token
|
|
},
|
|
success: function(response) {
|
|
userProfilePlaceholder.innerHTML = userProfileTemplate(response);
|
|
|
|
$('#login').hide();
|
|
$('#loggedin').show();
|
|
}
|
|
});
|
|
} else {
|
|
$('#login').show();
|
|
$('#loggedin').hide();
|
|
}
|
|
|
|
document.getElementById('login-button').addEventListener('click', function() {
|
|
|
|
var client_id = '03ffe0cac0a0401aa6673c3cf6d02ced'; // Your client id
|
|
var redirect_uri = 'http://localhost:8888/'; // Your redirect uri
|
|
|
|
var scope = 'user-read-private user-read-email';
|
|
|
|
var url = 'https://accounts.spotify.com/authorize';
|
|
url += '?response_type=token';
|
|
url += '&client_id=' + encodeURIComponent(client_id);
|
|
url += '&scope=' + encodeURIComponent(scope);
|
|
url += '&redirect_uri=' + encodeURIComponent(redirect_uri);
|
|
|
|
window.location = url;
|
|
}, false);
|
|
|
|
})();
|
|
</script>
|
|
</html>
|