-
Notifications
You must be signed in to change notification settings - Fork 398
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
503 Service Unavailable #12
Comments
Has this been fixed? Service still unavailable to me |
When trying out the service on https://lyricsovh.docs.apiary.io/#reference/0/lyrics-of-a-song/search?console=1 , then an HTML page with the following error message is returned: The server is temporarily unable to service your request due to maintenance |
Not functioning for me either. Looks like this entire API is just a wrapper around the // NTag/lyrics.ovh/index.js
appApi.get('/v1/:artist/:title', function (req, res) {
if (!req.params.artist || !req.params.title) {
return res.status(400).send({error: "Artist or title missing"});
}
alltomp3.findLyrics(req.params.title, req.params.artist).then(l => {
res.send({lyrics: l});
}).catch(e => {
console.log(e);
res.status(404).send({error: "No lyrics found"});
});
}); And looking at that code... all that // alltomp3/index.js
const reqWikia = request({
uri: 'http://lyrics.wikia.com/wiki/' + encodeURIComponent(artistName) + ':' + encodeURIComponent(title),
transform: (body) => {
return cheerio.load(body);
},
}).then(($) => {
return textln($('.lyricbox'));
}); This repo hasn't been updated in almost 2 years, so I wouldn't hold out for a return. Regardless, the functionality is pretty simple and could easily be replicated in any language. |
Has disabled this wiki any other resource would be helpful. |
UPDATE: I happened to check this morning at 6am CST and service is RESTORED GUYS!!!! |
Is this service down?
I am seeing the following:
Service Unavailable
The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.
Apache/2.4.25 (Debian) Server at lyrics.ovh Port 443
The text was updated successfully, but these errors were encountered: