我的问题是我可以输入不正确的登录凭据但我仍然可以成功登录。我的代码看起来像这样。即使我只是在键盘上敲了我的用户名和密码,它仍然告诉我我已经成功登录。
void CreateSession()
{
memset(&config, 0, sizeof(config));
config.api_version = SPOTIFY_API_VERSION;
config.cache_location = "tmp";
config.settings_location = "tmp";
config.application_key = g_appkey;
config.application_key_size = g_appkey_size;
config.user_agent = "SpotifyTest";
error = sp_session_create(&config, &session);
qDebug() << "1";
if (SP_ERROR_OK != error)
{
qDebug() << "failed to create session: " << sp_error_message(error);
return;
}
}
void Login(char* username, char* password)
{
char *blob = NULL;
if(session == NULL)
{
CreateSession();
qDebug() << "Session Created";
}
error = sp_session_login(session, username, password, 1, blob);
if (SP_ERROR_OK != error)
{
qDebug() << "failed to log in to Spotify: " << sp_error_message(error);
sp_session_release(session);
}
else
{
qDebug() << "Successful Login";
QString user_name = sp_session_user_name(session);
qDebug() << user_name;
}
}
答案 0 :(得分:2)
sp_session_login()
的返回值只是告诉您是否向该函数发送了有效输入。
要实际告知登录是否成功,您需要在sp_session_callbacks
中实施回调,特别是logged_in
,logged_out
和connection_error
。
libspotify附带的示例项目包含此实现。