0

我的问题是我可以输入不正确的登录凭据,但我仍然可以成功登录。我的代码看起来像这样。即使我只是敲击键盘输入我的用户名和密码,它仍然告诉我我已经成功登录。

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;
    }
}
4

1 回答 1

2

from 的返回值sp_session_login()只是告诉您是否向函数发送了有效输入。

要真正判断登录是否成功,您需要实现回调sp_session_callbacks,特别logged_inlogged_outconnection_error

libspotify 附带的示例项目包含此实现。

于 2013-10-27T20:00:24.517 回答