{{ message }}
Working with two-factor authentication#450
Open
ddimitrioglo wants to merge 1 commit intogithub-tools:masterfrom
ddimitrioglo:patch-1
Open
Working with two-factor authentication#450ddimitrioglo wants to merge 1 commit intogithub-tools:masterfrom ddimitrioglo:patch-1
ddimitrioglo wants to merge 1 commit intogithub-tools:masterfrom
ddimitrioglo:patch-1
Conversation
As mentioned in github API:
```
In addition to the Basic Authentication credentials, you must send the user's authentication code (i.e., one-time password) in the X-GitHub-OTP header.
```
And we will be able to use it like this:
```
const github = new GitHub({
username: 'ddimitrioglo',
password: 'xxxxxxxxxxxx',
otp: '888999' // <= One-Time-Password
});
let me = github.getUser();
me.listRepos((err, repos) => {
console.log(repos);
});
```
Member
Member
|
@j-rewerts I think to add tests for this we'd have to create a test user, set them up with OTP, and then commit the secret/salt/QR code/whatever so that we could use something like [this library][opt-lib] to generate the OTP during tests. (That library is not a specific recommendation, just doing a quick search to see if there is likely to be a library that will work) Thinking a bit more, we might need to have the configuration specify a callback that returns a current OTP value. |
Member
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

As mentioned in github API:
And we will be able to use it like this: