Ahoj.
Pokouším se o komunikaci s Hangouts z Pythonu. A vůbec mi to nejde.
Mám tento kód:
import sys
sys.path += ["./lib"]
from httplib2 import Http
from oauth2client.service_account import ServiceAccountCredentials
from apiclient.discovery import build, build_from_document
PEOPLE_API_SCOPES = [
'https://www.googleapis.com/auth/chat.bot',
]
credentials = ServiceAccountCredentials.from_json_keyfile_name("credentials.json", PEOPLE_API_SCOPES)
http_auth = credentials.authorize(Http())
chat = build('chat', 'v1', http=http_auth, cache_discovery=False)
print(chat.spaces().list().execute())
To jakože funguje, ale hlásí to HttpError 404 "No bot associated with this project."
A mě se prostě nedaří, kde to mám s tím projektem asociovat.
Poradíte mi prosím? Díky.