hello, I've been looking for a way to get info from a discogs url on my node.js webpage. Previously I was just doing a GET request for the api url, that worked fine but had a rate limit of like 3 per minute which was very slow. This package is alot faster and more reliable, but it only works for release codes?
I know the function getReleases, and I can use it successfully with release URL's like so:
Is there any way I can get metadata info for the master release itself? My master release code is 68613.
Like a db.getMaster(68613,function(err, resp){ function, or a way to choose the first release code under a master.
@bartve im not too familiar with this package but would love to help and add this feature. do you think it would just require copying the getRelease function declaration here but with getMaster ?
hello, I've been looking for a way to get info from a discogs url on my node.js webpage. Previously I was just doing a GET request for the api url, that worked fine but had a rate limit of like 3 per minute which was very slow. This package is alot faster and more reliable, but it only works for release codes?
I know the function
getReleases
, and I can use it successfully with release URL's like so:This returns data for the release ID page 29852 correctly. But If I have a master url, like:
https://www.discogs.com/Malcolm-McLaren-Duck-Rock/master/68613
Is there any way I can get metadata info for the master release itself? My master release code is 68613.
Like a
db.getMaster(68613,function(err, resp){
function, or a way to choose the first release code under a master.@bartve im not too familiar with this package but would love to help and add this feature. do you think it would just require copying the
getRelease
function declaration here but withgetMaster
?