Cloud Mail 2020 Android Edition

Questions / Feedback?

Authorization Property

An OAuth Authorization String.

Syntax

public String getAuthorization();
public void setAuthorization(String authorization);

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 = "YourClientId";  
oauth.ClientSecret = "YourClientSecret";
oauth.ServerAuthURL = "https://login.microsoftonline.com/common/oauth2/v2.0/authorize";
oauth.ServerTokenURL = "https://login.microsoftonline.com/common/oauth2/v2.0/token";
oauth.AuthorizationScope = "user.read mail.readwrite mail.send mailboxsettings.readwrite";
oauth.GrantType = OauthGrantTypes.ogtAuthorizationCode;

office365.Authorization = oauth.GetAuthorization();

This property is not available at design time.

Default Value

""

Copyright (c) 2022 /n software inc. - All rights reserved.
Cloud Mail 2020 Android Edition - Version 20.0 [Build 8308]