DropboxOAuthResult
public enum DropboxOAuthResult : Equatable
The result of an authorization attempt.
-
The authorization succeeded. Includes a
DropboxAccessToken.Declaration
Swift
case success(DropboxAccessToken) -
The authorization failed. Includes an
OAuth2Errorand a descriptive message.Declaration
Swift
case error(OAuth2Error, String?) -
The authorization was manually canceled by the user.
Declaration
Swift
case cancel
View on GitHub
DropboxOAuthResult Enumeration Reference