diff --git a/platypush/plugins/google/__init__.py b/platypush/plugins/google/__init__.py index 0500a03f..95a6569a 100644 --- a/platypush/plugins/google/__init__.py +++ b/platypush/plugins/google/__init__.py @@ -29,15 +29,36 @@ class GooglePlugin(Plugin): 5 Select "Desktop app", enter whichever name you like, and click "Create". 6. Click on the "Download JSON" icon next to your newly created client ID. + Save the JSON file under + ``/credentials/google/client_secret.json``. - 7. Generate a credentials file for the required scope: + 7.1. If you're running the service on a desktop environment, then you + can just start the application. A browser window will open and + you'll be asked to authorize the application - you may be prompted + with a warning because you are running a personal and potentially + unverified application. After authorizing the application, the + process will save the credentials under + ``/credentials/google/.json`` and proceed + with the plugin initialization. - .. code-block:: bash + 7.2. If you're running the service on a headless environment, or you + prefer to manually generate the credentials file before copying to + another machine, you can run the following command: - mkdir -p /credentials/google - python -m platypush.plugins.google.credentials \ - 'calendar.readonly' \ - /credentials/google/client_secret.json + .. code-block:: bash + + mkdir -p /credentials/google + python -m platypush.plugins.google.credentials \ + 'calendar.readonly,gmail.modify' \ + [--noauth_local_webserver] \ + /credentials/google/client_secret.json + + When launched with ``--noauth_local_webserver``, the script will + start a local webserver and print a URL that should be opened in + your browser. After authorizing the application, you may be + prompted with a code that you should copy and paste back to the + script. Otherwise, if you're running the script on a desktop, a + browser window will be opened automatically. """ diff --git a/platypush/plugins/google/calendar/__init__.py b/platypush/plugins/google/calendar/__init__.py index 665a5196..64d57df9 100644 --- a/platypush/plugins/google/calendar/__init__.py +++ b/platypush/plugins/google/calendar/__init__.py @@ -28,15 +28,36 @@ class GoogleCalendarPlugin(GooglePlugin, CalendarInterface): 5 Select "Desktop app", enter whichever name you like, and click "Create". 6. Click on the "Download JSON" icon next to your newly created client ID. + Save the JSON file under + ``/credentials/google/client_secret.json``. - 7. Generate a credentials file for the required scope: + 7.1. If you're running the service on a desktop environment, then you + can just start the application. A browser window will open and + you'll be asked to authorize the application - you may be prompted + with a warning because you are running a personal and potentially + unverified application. After authorizing the application, the + process will save the credentials under + ``/credentials/google/.json`` and proceed + with the plugin initialization. - .. code-block:: bash + 7.2. If you're running the service on a headless environment, or you + prefer to manually generate the credentials file before copying to + another machine, you can run the following command: - mkdir -p /credentials/google - python -m platypush.plugins.google.credentials \ - 'calendar.readonly' \ - /credentials/google/client_secret.json + .. code-block:: bash + + mkdir -p /credentials/google + python -m platypush.plugins.google.credentials \ + 'calendar.readonly' \ + [--noauth_local_webserver] \ + /credentials/google/client_secret.json + + When launched with ``--noauth_local_webserver``, the script will + start a local webserver and print a URL that should be opened in + your browser. After authorizing the application, you may be + prompted with a code that you should copy and paste back to the + script. Otherwise, if you're running the script on a desktop, a + browser window will be opened automatically. """ diff --git a/platypush/plugins/google/drive/__init__.py b/platypush/plugins/google/drive/__init__.py index 7e61de8d..d5ea5f96 100644 --- a/platypush/plugins/google/drive/__init__.py +++ b/platypush/plugins/google/drive/__init__.py @@ -28,15 +28,36 @@ class GoogleDrivePlugin(GooglePlugin): 5 Select "Desktop app", enter whichever name you like, and click "Create". 6. Click on the "Download JSON" icon next to your newly created client ID. + Save the JSON file under + ``/credentials/google/client_secret.json``. - 7. Generate a credentials file for the required scope: + 7.1. If you're running the service on a desktop environment, then you + can just start the application. A browser window will open and + you'll be asked to authorize the application - you may be prompted + with a warning because you are running a personal and potentially + unverified application. After authorizing the application, the + process will save the credentials under + ``/credentials/google/.json`` and proceed + with the plugin initialization. - .. code-block:: bash + 7.2. If you're running the service on a headless environment, or you + prefer to manually generate the credentials file before copying to + another machine, you can run the following command: - mkdir -p /credentials/google - python -m platypush.plugins.google.credentials \ - 'drive,drive.appfolder,drive.photos.readonly' \ - /credentials/google/client_secret.json + .. code-block:: bash + + mkdir -p /credentials/google + python -m platypush.plugins.google.credentials \ + 'drive,drive.appfolder,drive.photos.readonly' \ + [--noauth_local_webserver] \ + /credentials/google/client_secret.json + + When launched with ``--noauth_local_webserver``, the script will + start a local webserver and print a URL that should be opened in + your browser. After authorizing the application, you may be + prompted with a code that you should copy and paste back to the + script. Otherwise, if you're running the script on a desktop, a + browser window will be opened automatically. """ diff --git a/platypush/plugins/google/fit/__init__.py b/platypush/plugins/google/fit/__init__.py index 17dbc1a0..f8a36fc6 100644 --- a/platypush/plugins/google/fit/__init__.py +++ b/platypush/plugins/google/fit/__init__.py @@ -25,22 +25,43 @@ class GoogleFitPlugin(GooglePlugin): 5 Select "Desktop app", enter whichever name you like, and click "Create". 6. Click on the "Download JSON" icon next to your newly created client ID. + Save the JSON file under + ``/credentials/google/client_secret.json``. - 7. Generate a credentials file for the required scope: + 7.1. If you're running the service on a desktop environment, then you + can just start the application. A browser window will open and + you'll be asked to authorize the application - you may be prompted + with a warning because you are running a personal and potentially + unverified application. After authorizing the application, the + process will save the credentials under + ``/credentials/google/.json`` and proceed + with the plugin initialization. - .. code-block:: bash + 7.2. If you're running the service on a headless environment, or you + prefer to manually generate the credentials file before copying to + another machine, you can run the following command: - $ mkdir -p /credentials/google - $ roles=" - fitness.activity.read, - fitness.body.read, - fitness.body_temperature.read, - fitness.heart_rate.read, - fitness.sleep.read, - fitness.location.read - " - $ python -m platypush.plugins.google.credentials "$roles" \ - /credentials/google/client_secret.json + .. code-block:: bash + + $ mkdir -p /credentials/google + $ roles=" + fitness.activity.read, + fitness.body.read, + fitness.body_temperature.read, + fitness.heart_rate.read, + fitness.sleep.read, + fitness.location.read + " + $ python -m platypush.plugins.google.credentials "$roles" \ + [--noauth_local_webserver] \ + /credentials/google/client_secret.json + + When launched with ``--noauth_local_webserver``, the script will + start a local webserver and print a URL that should be opened in + your browser. After authorizing the application, you may be + prompted with a code that you should copy and paste back to the + script. Otherwise, if you're running the script on a desktop, a + browser window will be opened automatically. """ diff --git a/platypush/plugins/google/mail/__init__.py b/platypush/plugins/google/mail/__init__.py index c8e1355b..ab174956 100644 --- a/platypush/plugins/google/mail/__init__.py +++ b/platypush/plugins/google/mail/__init__.py @@ -37,15 +37,36 @@ class GoogleMailPlugin(GooglePlugin): 5 Select "Desktop app", enter whichever name you like, and click "Create". 6. Click on the "Download JSON" icon next to your newly created client ID. + Save the JSON file under + ``/credentials/google/client_secret.json``. - 7. Generate a credentials file for the required scope: + 7.1. If you're running the service on a desktop environment, then you + can just start the application. A browser window will open and + you'll be asked to authorize the application - you may be prompted + with a warning because you are running a personal and potentially + unverified application. After authorizing the application, the + process will save the credentials under + ``/credentials/google/.json`` and proceed + with the plugin initialization. - .. code-block:: bash + 7.2. If you're running the service on a headless environment, or you + prefer to manually generate the credentials file before copying to + another machine, you can run the following command: - mkdir -p /credentials/google - python -m platypush.plugins.google.credentials \ - 'gmail.modify' \ - /credentials/google/client_secret.json + .. code-block:: bash + + mkdir -p /credentials/google + python -m platypush.plugins.google.credentials \ + 'gmail.modify' \ + [--noauth_local_webserver] \ + /credentials/google/client_secret.json + + When launched with ``--noauth_local_webserver``, the script will + start a local webserver and print a URL that should be opened in + your browser. After authorizing the application, you may be + prompted with a code that you should copy and paste back to the + script. Otherwise, if you're running the script on a desktop, a + browser window will be opened automatically. """