Skip to content
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

Allow login with 2fa #30

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions mega.go
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ func (m *Mega) prelogin(email string) error {
}

// Authenticate and start a session
func (m *Mega) login(email string, passwd string) error {
func (m *Mega) login(email string, passwd string, multiFactor string) error {
var msg [1]LoginMsg
var res [1]LoginResp
var err error
Expand All @@ -531,6 +531,7 @@ func (m *Mega) login(email string, passwd string) error {

msg[0].Cmd = "us"
msg[0].User = email
msg[0].Mfa = multiFactor
if m.accountVersion == 1 {
msg[0].Handle = uhandle
} else {
Expand Down Expand Up @@ -579,13 +580,13 @@ func (m *Mega) login(email string, passwd string) error {
}

// Authenticate and start a session
func (m *Mega) Login(email string, passwd string) error {
func (m *Mega) Login(email string, passwd string, multiFactor string) error {
err := m.prelogin(email)
if err != nil {
return err
}

err = m.login(email, passwd)
err = m.login(email, passwd, multiFactor)
if err != nil {
return err
}
Expand Down