- Thread starter
- #51
Thank you very much for your investigation, really appreciated!
I'm sure that we will solve also this problem.
After some testing and researching I found out that the issue occurs under some circumstance, when the " (quotation mark) character is used to enclose the search strings in the URL.
Working:
Please note the missing quotation mark character at the URL end!
Not working:
With all quotation marks.
According to the MusicBrainz API documentation search strings don't need to be enclosed:
Artist
Example
If you remove the quotation mark from the MBID search function it works for all albums and we comply with the MBID query syntax:
Working:
The same applies to the GNR album:
Working:
I'm sure that we will solve also this problem.
After some testing and researching I found out that the issue occurs under some circumstance, when the " (quotation mark) character is used to enclose the search strings in the URL.
Working:
Code:
http://musicbrainz.org/ws/2/release-group/?query=artist:"Various+Artists" AND release:"Dream+Dance,Vol.+46
Not working:
Code:
http://musicbrainz.org/ws/2/release-group/?query=artist:"Various+Artists" AND release:"Dream+Dance,+Vol.+46"
According to the MusicBrainz API documentation search strings don't need to be enclosed:
Artist
Example
Code:
http://musicbrainz.org/ws/2/artist/?query=artist:fred%20AND%20type:group%20AND%20country:US
If you remove the quotation mark from the MBID search function it works for all albums and we comply with the MBID query syntax:
Working:
Code:
http://musicbrainz.org/ws/2/release-group/?query=artist:Various+Artists AND release:Dream+Dance,+Vol.+46
The same applies to the GNR album:
Working:
Code:
http://musicbrainz.org/ws/2/release-group/?query=artist:Guns+N'+Roses AND release:Use+Your+Illusion+I