zoom_launcher 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +10 -2
- data/lib/zoom_launcher/google_auth.rb +1 -1
- data/lib/zoom_launcher/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 749f9399b1f7da6cec06469522d170acc99abd7a
|
4
|
+
data.tar.gz: 935e1023661e5321d3c83c9e0e596766ec55f851
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cc441c828c94650ee851283209fc9a050e486c6fbed38d15336b401833aca3323b73ef6844d7148144714870459890e42f70b37c0439d71e96aff0047fd84f8d
|
7
|
+
data.tar.gz: ab7c2bd1a1b2b037d93fc0eb1a86eea60a0eb9cfbb596d2fcc0d34407c4ce064ac2ed1334f902085ab184ebaf59ccba3d35bc9ddb6369ab8a284dad5de7f3c4c
|
data/README.md
CHANGED
@@ -21,8 +21,16 @@ Oh, and here's the URL in case you need it: https://www.google.com/calendar/even
|
|
21
21
|
|
22
22
|
In order to use Zoom Launcher, you need to create an OAuth app and authorize it to access your calendar:
|
23
23
|
|
24
|
-
1. Go to https://console.developers.google.com and create a new project
|
25
|
-
2. Click "Credentials on the left
|
24
|
+
1. Go to https://console.developers.google.com and create a new project (you may need to switch to your work account)
|
25
|
+
2. Click "Credentials" on the left side and create a new OAuth credential with type "other" for that project
|
26
26
|
3. Create a new OAuth credential, and download the resulting JSON file
|
27
27
|
4. Move the file to `~/.config/google/client_secrets.json`
|
28
28
|
5. Run `zoom auth` and follow the instructions to authorize the app
|
29
|
+
|
30
|
+
## Project status
|
31
|
+
|
32
|
+
Rough-around-the-edges-but-it-usually-works-use-at-your-own-peril
|
33
|
+
|
34
|
+
## Pro-tip
|
35
|
+
|
36
|
+
Set Zoom to open with video and audio disabled for your own safety.
|
@@ -73,7 +73,7 @@ module ZoomLauncher
|
|
73
73
|
credentials = authorizer.get_credentials(user_id)
|
74
74
|
if credentials.nil?
|
75
75
|
url = authorizer.get_authorization_url(base_url: OOB_URI)
|
76
|
-
`open #{url}`
|
76
|
+
`open "#{url}"`
|
77
77
|
code = ask 'Enter the authorization code:'
|
78
78
|
credentials = authorizer.get_and_store_credentials_from_code(
|
79
79
|
user_id: user_id, code: code, base_url: OOB_URI
|