-
Notifications
You must be signed in to change notification settings - Fork 25
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
VIMNetworking authenticate fail #203
Comments
Received the same error during authentication process. |
i have the same issue here and crash my app 2016-11-25 09:14:24.876 VimeoAPIVerify[14409:2638848] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Unable to save account for key: ClientCredentialsAccountKey' |
I found this problem is on simulator(I'm using iOS10.1), and it works fine on device(iPhone6 plus, with 10.1) |
# Found a temporary solution - use the method in this stackoverflow.com question (that manually sets the access token) - then make sure you enable Keychain Sharing in your Xcode's Project settings/configuration under the capabilities tab |
Issue Summary
during the authenticate process crash at ->
*** Assertion failure in -[VIMSession authenticationCompleteWithAccount:error:key:completionBlock:]
Reproduction Steps
Follow the authentication process, when jump back from safari app crash. It seems the user account cannot save in keychain.
Expected Behaviour
User info should be able to store in keychain properly.
Actual Behaviour
This process cannot pass the assert in the method method above.
NSAssert(success, @"Unable to save account for key: %@", key);
The thing I couldn't understand is it worked a week ago, however I can't get it work any more.
The text was updated successfully, but these errors were encountered: