From 971b0718c7a4707009554b71fc6a10d83115b3e6 Mon Sep 17 00:00:00 2001 From: thetarkus Date: Tue, 14 Aug 2018 23:44:03 -0400 Subject: [PATCH] Update gmusic docs --- docs/plugins/gmusic.rst | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/docs/plugins/gmusic.rst b/docs/plugins/gmusic.rst index e760f73a2..e43508a92 100644 --- a/docs/plugins/gmusic.rst +++ b/docs/plugins/gmusic.rst @@ -27,7 +27,8 @@ Configuration is required before use. Below is an example configuration:: password: seekrit auto: yes uploader_id: 00:11:22:33:AA:BB - device_id: F96AE4C643A5 + device_id: 00112233AABB + oauth_filepath: ~/.config/beets/oauth.cred To upload tracks to Google Play Music, use the ``gmusic-upload`` command:: @@ -67,16 +68,19 @@ The available options are: - **auto**: Set to ``yes`` to automatically upload new imports to Google Play Music. Default: ``no`` -- **uploader_id**: Unique id as a MAC address, eg ``'00:11:22:33:AA:BB'``. +- **uploader_id**: Unique id as a MAC address, eg ``00:11:22:33:AA:BB``. This option should be set before the maximum number of authorized devices is reached. If provided, use the same id for all future runs on this, and other, beets installations as to not reach the maximum number of authorized devices. Default: device's MAC address. -- **device_id**: Unique device ID for authorized devices. +- **device_id**: Unique device ID for authorized devices. It is usually + the same as your MAC address with the colons removed, eg ``00112233AABB``. This option only needs to be set if you receive an `InvalidDeviceId` exception. Below the exception will be a list of valid device IDs. Default: none. +- **oauth_filepath**: Filepath for oauth credentials file. + Default: none. Refer to the `Google Play Music Help `__