We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Using the example code in the readme and here https://github.com/badboy/cuba-u2f-demo/blob/master/app.rb#L172-L193
This line works
@sign_requests = u2f.authentication_requests(key_handles)
and creates and Array of U2F::SignRequest objects but the next line
U2F::SignRequest
@sign_requests.map(&:challenge)
throws
NoMethodError: undefined method 'challenge' for #<U2F::SignRequest:0x007fe9a58c94c0>
The text was updated successfully, but these errors were encountered:
Related? #31
Sorry, something went wrong.
Absolutely related; the 0.2.0 version of U2F::SignRequest has a 'challenge' method and accessor; the 1.0.0 method does not.
No branches or pull requests
Using the example code in the readme and here https://github.com/badboy/cuba-u2f-demo/blob/master/app.rb#L172-L193
This line works
@sign_requests = u2f.authentication_requests(key_handles)
and creates and Array of
U2F::SignRequest
objects but the next line@sign_requests.map(&:challenge)
throws
NoMethodError: undefined method 'challenge' for #<U2F::SignRequest:0x007fe9a58c94c0>
The text was updated successfully, but these errors were encountered: