Plano de Integração:
(ST = Sem tela definida/construída)
- Cadastro:
- Coach:
- Cliente:
- Coach:
Plano de Integração:
(ST = Sem tela definida/construída)
| def avocado(key): | |
| return key + ': Avocado' | |
| def banana(key): | |
| return key + ': Banana' | |
| def cherry(key): | |
| return key + ': Cherry' |
Base URL: https://www.google.com/speech-api/v1/recognize
It accepts POST requests with voice file encoded in FLAC format, and query parameters for control.
client
The client's name you're connecting from. For spoofing purposes, let's use chromium
lang
Speech language, for example, ar-QA for Qatari Arabic, or en-US for U.S. English
| #Here is example 1 | |
| def get(self, request, format=None): | |
| user = request.user | |
| #.... | |
| #Here is the way I like to do (Verifying if the request is authenticated) | |
| def get(self, request, format=None): | |
| if request.auth: | |
| user = request.user |