- OAuth2 for Webserver applications
- OAuth2 for Installed applications
- OAuth2 for Client-side (JavaScript) applications
- OAuth2 for Applications on limited-input devices
- OAuth2 for Service accounts (Server to Server Applications)
Para mais informações consulte a documentações da Google OAuth 2.0 to Access Google APIs
Create enviroment variable at path
- Como configurar a variável de ambiente
- No seu código poderá realizar a seguinte chamada. 2.1 Exemplo baseado no Google Calendar
interface
..
implemetation
uses
Model.Adapters.OAuth2.OAuthGoogle4D;
var
LToken : String;
begin
LToken := TOAuth2Google4D.New
.SetScope(TScopesGoogleCalendar4D.READ_WRITE)
.Credentials
.GetToken
.Token
.GetAccesToken;
end;
- Implementar api de IAM Credential
- Implementar OAuth2 WebServer Applications
- Implementar OAuth2 Installed applications
- Implementar API's Google Cloud