Sean Batson

Results 32 comments of Sean Batson

The code below is responsible for the message if the time between the server and the client is not in sync or skewed. ```C // OpenID Connect Core Section 3.1.3.7....

If the server is yours sync it to an internet clock/time service the clock on the server or the device is off or the server has bug in the generation...

You can probably try using this locally via docker and see if the problem still happens with the AppAuth SDK: https://www.keycloak.org

Your request must include the refresh_token in the scope request. ```swift OIDAuthorizationRequest(configuration: configuration, clientId: clientID, clientSecret: clientSecret, scopes: [OIDScopeOpenID, "id", "full", "refresh_token"], redirectURL: redirectURI, responseType: OIDResponseTypeCode, additionalParameters: ["prompt": "login"]) ```

redirectURI is the app scheme you need to add to the info plist: ```swift /** Should follow the URI or URL scheme */ let redirectURL = "myapp://path" ``` this is...

The premise behind OAuth is transparency.

Has anyone with Apple Silicon enabled Rosetta support in Xcode?

This error is because these views are UIKit-based views and will be absent from a native macOS build because they are not AppKit-based views. If you're targeting macOS, your best...

Their Tokens have a 60 life span so on the 59th day put user their login process and the refresh occurs server side automatically, not the best experience but it...