UNPKG
@lumiastream/spotify-cove
Version:
alpha (6.0.0-alpha.1)
beta (6.0.1-beta.1)
latest (7.0.1)
7.0.1
7.0.0
6.0.1
6.0.1-beta.1
6.0.0
6.0.0-alpha.1
5.0.4-alpha.2
5.0.4-alpha.1
5.0.3
A Node.js wrapper for Spotify's Web API
github.com/lumiastream/spotify-cove
lumiastream/spotify-cove
@lumiastream/spotify-cove
/
src
/
authentication-request.js
15 lines
(11 loc)
•
309 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
'use strict'
;
var
Request
=
require
(
'./base-request'
);
var
DEFAULT_HOST
=
'accounts.spotify.com'
,
DEFAULT_PORT
=
443
,
DEFAULT_SCHEME
=
'https'
;
module
.
exports
.
builder
=
function
(
) {
return
Request
.
builder
() .
withHost
(
DEFAULT_HOST
) .
withPort
(
DEFAULT_PORT
) .
withScheme
(
DEFAULT_SCHEME
); };