You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Generic error code is returned for all authorization (#321)
* Fix error returning discovery document
* Add status code for .unexpectedAuthCodeResponse
* Refactoring of APIError
* Argument renaming underlyingError
* Minor fix
* Handle error and error_description parameters for authorization response
* Handle error and error_description parameters for token response
* Support CustomNSError
* Fix error returning
* Minor fix
* Add tests for errors
* Minor updates for example project. Update documentation
* Fix comments
***Note:*** It is highly recommended to copy all of the existing parameters from the original URLRequest object to modified request without any changes. Altering of this data could lead network request to fail. If `customizableURLRequest(_:)` method returns `nil` default request will be used.
509
510
511
+
## Migration
512
+
513
+
### Migrating from 3.10.x to 3.11.x
514
+
515
+
The SDK `okta-oidc-ios` has a major changes in error handling. Consider these guidelines to update your code.
516
+
517
+
-`APIError` is renamed as `api`.
518
+
-`api` error has the additional parameter `underlyingError`, it's an optional and indicates the origin of the error.
519
+
- Introduced a new error `authorization(error:description:)`.
520
+
-`authorization` error appears when authorization server fails due to errors during authorization.
521
+
-`unexpectedAuthCodeResponse(statusCode:)` has an error code parameter.
522
+
-`OktaOidcError` conforms to `CustomNSError` protocol. It means you can convert the error to `NSError` and get `code`, `userInfo`, `domain`, `underlyingErrors`.
523
+
-`OktaOidcError` conforms to `Equatable` protocol. The errors can be compared for equality using the operator `==` or inequality using the operator `!=`.
524
+
510
525
## Known issues
511
526
512
527
### iOS shows permission dialog(`{App} Wants to Use {Auth Domain} to Sign In`) for Okta Sign Out flows
0 commit comments