I was running into the issue described in this stackoverflow thread, which was basically that when using more recent versions of ruby all API calls with rspotify would just throw undefined method 'encode' for URI:Module.
As per the insightful suggestion by @kstrukov in the stackoverflow thread, I tried simply updating rspotify to be consistent in its use of Addressable::URI.encode instead of the deprecated URI::encode, and it seems to have solved the issue for me so figured I'd propose the change.
I was running into the issue described in this stackoverflow thread, which was basically that when using more recent versions of ruby all API calls with rspotify would just throw
undefined method 'encode' for URI:Module
.As per the insightful suggestion by @kstrukov in the stackoverflow thread, I tried simply updating rspotify to be consistent in its use of
Addressable::URI.encode
instead of the deprecatedURI::encode
, and it seems to have solved the issue for me so figured I'd propose the change.