-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauth_steps.html
48 lines (45 loc) · 1.44 KB
/
auth_steps.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<html>
<head>
<title>Spotify Backup Script - First Time Authentication</title>
</head>
<body>
<h1>Spotify Backup Script - First Time Authentication</h1>
<ol>
<li>
<p>
Navigate to your Spotify Backup Script app via the
<a href="https://developer.spotify.com/dashboard/applications">
Spotify App Dashboard.
</a>
</p>
</li>
<li>
<p>
Add the following URI to the 'Redirect URIs' field,
found under "Edit Settings":
<br />
<code> <?= ScriptApp.getService().getUrl() ?> </code>
</p>
<p>
For more information, see
<a href="https://developer.spotify.com/documentation/general/guides/app-settings/">
Spotify's Development Guide.
</a>
</p>
</li>
<li>
<p>
Go to the following URL, log into the desired user's Spotify
account, and approve access:
<br />
<a href="<?= generateAuthUrl() ?>" target="_blank">
<?= generateAuthUrl() ?>
</a>
</p>
</li>
<li>
You should be redirected back to a success page on Google App Script.
</li>
</ol>
</body>
</html>