authorization Property
An OAuth Authorization String.
Syntax
def get_authorization() -> str: ... def set_authorization(value: str) -> None: ...
authorization = property(get_authorization, set_authorization)
Default Value
""
Remarks
This property is used to specify an OAuth authorization string. Setting it is a requirement for using the component.
Example
Oauth oauth =
new
Oauth();
oauth.ClientId =
"3c65828c-6376-4286-91b5-2381c3904a97"
;
oauth.ClientSecret =
"mkk2a2M-B5TQI7o5p_N0fR-CHYVn7e3yH~"
;
oauth.ServerAuthURL =
"https://accounts.google.com/o/oauth2/auth"
;
oauth.ServerTokenURL =
"https://accounts.google.com/o/oauth2/token"
;
oauth.AuthorizationScope =
"https://www.googleapis.com/auth/gmail.readonly"
;
oauth.GrantType = OauthGrantTypes.ogtAuthorizationCode;
gmail.Authorization = oauth.GetAuthorization();