MultiMC5/launcher/minecraft/auth/flows/MSAInteractive.cpp

23 lines
508 B
C++
Raw Normal View History

#include "MSAInteractive.h"
2021-11-20 15:22:22 +00:00
MSAInteractive::MSAInteractive(
AccountData* data,
QObject* parent
) : AuthContext(data, parent) {}
void MSAInteractive::executeTask() {
m_requestsDone = 0;
m_xboxProfileSucceeded = false;
m_mcAuthSucceeded = false;
initMSA();
QVariantMap extraOpts;
extraOpts["prompt"] = "select_account";
m_oauth2->setExtraRequestParams(extraOpts);
beginActivity(Katabasis::Activity::LoggingIn);
*m_data = AccountData();
m_oauth2->login();
}