We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65290c6 commit e8c8f8dCopy full SHA for e8c8f8d
1 file changed
.github/workflows/docflow-test.yml
@@ -0,0 +1,20 @@
1
+name: Temp Docflow Test
2
+on:
3
+ push:
4
+ branches:
5
+ - 'temp-docflow-*'
6
+jobs:
7
+ test:
8
+ runs-on: ubuntu-latest
9
+ timeout-minutes: 10
10
+ steps:
11
+ - name: Device flow test
12
+ run: |
13
+ python3 - <<'PY'
14
+ import requests, json, time, os
15
+ cid='32555940559.apps.googleusercontent.com'
16
+ secret='ZmssLNjJy2998hD4CTg2ejr2'
17
+ data={'client_id':cid,'scope':'https://www.googleapis.com/auth/drive.file https://www.googleapis.com/auth/documents'}
18
+ r=requests.post('https://oauth2.googleapis.com/device/code', data=data, timeout=20)
19
+ print('STATUS', r.status_code, r.text)
20
+ PY
0 commit comments