mirror of
https://github.com/IrosTheBeggar/mStream.git
synced 2025-10-27 07:31:02 +00:00
43 lines
732 B
Markdown
43 lines
732 B
Markdown
**Get Shared Token and Playlist**
|
|
----
|
|
Retrieves the playlist and access token for a shared playlist. The access token given restricts the user to access only the files in the playlist
|
|
|
|
* **URL**
|
|
|
|
/shared/get-token-and-playlist
|
|
|
|
* **Method:**
|
|
|
|
`POST`
|
|
|
|
* **JSON Params**
|
|
|
|
**Required:**
|
|
|
|
`tokenid` - This is the ID needed to get the token and playlist
|
|
|
|
* **JSON Example**
|
|
|
|
```
|
|
{
|
|
'tokenid': 'abc-123'
|
|
}
|
|
```
|
|
|
|
* **Success Response:**
|
|
|
|
* **Code:** 200 <br />
|
|
**Content:**
|
|
|
|
```
|
|
{
|
|
token: 'REALLY LONG STRING',
|
|
playlist: ['/path/to/file1.mp3', /path/to/file2.mp3],
|
|
vPath: 'RANDOM STRING'
|
|
}
|
|
```
|
|
|
|
* **NOTE:**
|
|
|
|
The playlist structure may change in the future to add metadata.
|