-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathoob_auth.py
executable file
·55 lines (37 loc) · 1.53 KB
/
oob_auth.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Script para obtener el token de autorización de la aplicación.
El fichero “client_secrets.json” se obtiene de la cuenta tps.7540rw@gmail.com
en la URL:
https://console.developers.google.com/project/1054797797536/apiui/credential
La URL que imprime el programa ha de ser abierta con la cuenta de Gmail
correspondiente a la asignatura (p.ej. tps.7541@gmail.com).
"""
import argparse
from oauth2client import tools
from oauth2client.file import Storage
from oauth2client.client import flow_from_clientsecrets
def get_credentials(client_secrets):
"""Autentica con OAuth2 a un usuario.
Args:
client_secrets: ruta al fichero “client_secrets.json” de la applicación.
Returns:
un objeto oauth2client.client.Credentials.
"""
storage = Storage("/dev/null")
flags = tools.argparser.parse_args(args=["--noauth_local_webserver"])
flow = flow_from_clientsecrets(
client_secrets,
scope=["https://mail.google.com/",
"https://spreadsheets.google.com/feeds"])
return tools.run_flow(flow, storage, flags)
def main():
parser = argparse.ArgumentParser()
parser.add_argument("client_secrets",
help="Ruta al fichero clients_secrets.json")
args = parser.parse_args()
credentials = get_credentials(args.client_secrets)
# TODO(dato): también imprimir NOTAS_OAUTH_{CLIENT,SECRET}.
print('NOTAS_REFRESH_TOKEN="%s"' % credentials.refresh_token)
if __name__ == "__main__":
main()