Added AddToQueue

This commit is contained in:
Jonas Dellinger 2020-03-09 20:28:41 +01:00
parent 284d80ff6f
commit 307d69945e
3 changed files with 4066 additions and 4067 deletions

View File

@ -217,3 +217,21 @@ ErrorResponse error = _spotify.SetVolume(50);
```csharp
ErrorResponse error = _spotify.SetShuffle(false);
```
---
## AddToQueue
> Add an Item to the User's Playback Queue. BETA.
**Parameters**
|Name|Description|Example|
|--------------|-------------------------|-------------------------|
|uri|The uri of the item to add to the queue. Must be a track or an episode uri.| `spotify:track:7zrCVKp6x0AtolOsn2iMif`
|[deviceId]| The id of the device this command is targeting. If not supplied, the user's currently active device is the target. | `"XXXX-XXXX-XXXX-XXXX"`
**Usage**
```csharp
ErrorResponse error = _spotify.AddToQueue("spotify:track:7zrCVKp6x0AtolOsn2iMif");
```

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff