在 Windows 上使用 libspotify 登录到 Spotify 帐户?
Posted
技术标签:
【中文标题】在 Windows 上使用 libspotify 登录到 Spotify 帐户?【英文标题】:Login to a spotify account using libspotify on windows? 【发布时间】:2013-11-06 12:07:43 【问题描述】:我的问题是我可以输入不正确的登录凭据,但我仍然可以成功登录。我的代码看起来像这样。即使我只是敲击键盘输入我的用户名和密码,它仍然告诉我我已成功登录。
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;
【问题讨论】:
【参考方案1】:sp_session_login()
的返回值只是告诉您是否向函数发送了有效输入。
要真正判断登录是否成功,您需要实现sp_session_callbacks
中的回调,特别是logged_in
、logged_out
和connection_error
。
libspotify 附带的示例项目包含此实现。
【讨论】:
以上是关于在 Windows 上使用 libspotify 登录到 Spotify 帐户?的主要内容,如果未能解决你的问题,请参考以下文章
使用 libspotifydotnet (Spotify - libspotify) 流式传输音频
libspotify API:如何使用 libspotify API 检索封面艺术?
可以在没有 Spotify 帐户的情况下使用可可 libspotify 元数据方法吗?