-
Notifications
You must be signed in to change notification settings - Fork 36
Error code & other related tasks refactoring #153
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
59dedf2
5305f64
1370486
fb06c85
1a4a89f
79f415f
26fcc80
d26da5a
258ce69
f383235
abb22c7
92ec263
f14de0e
d49dd2e
bbd6375
6b87210
3672f38
3117678
089ec9f
9acc5b8
330fcd8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -101,7 +101,7 @@ - (MSIDAccountType)accountType | |
|
||
- (MSIDErrorCode)oauthErrorCode | ||
{ | ||
return MSIDErrorCodeForOAuthError(self.error, MSIDErrorInteractionRequired); | ||
return MSIDErrorCodeForOAuthError(self.error, MSIDErrorServerOauth); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. will the clients know to show UI on MSIDErrorServerOauth? I think the reason to have MSIDErrorInteractionRequired as default is so that client show UI in MSAL? Can we check what was MSAL and ADAL implementation before? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Top level : Interaction required and double check converter in MSAL and ADAL |
||
} | ||
|
||
- (NSDictionary *)additionalServerInfo | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why this got removed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was removed for iOS. There is a separate issue for this in #157