Embedly API отвечает 404 при использовании нескольких URL
При обращении к API Embedly вот так:
$.getJSON('https://api.embedly.com/1/oembed?' + $.param({
url: 'http://example.com/article-1',
key: "myapikey"
}));
Я получаю данные для встраивания. Но когда я пытаюсь сделать это с несколькими URL-адресами:
$.getJSON('https://api.embedly.com/1/oembed?' + $.param({
urls: 'http://example.com/article-1,http://example.com/article-2,http://example.com/article-3',
key: "myapikey"
}));
Я получаю сообщение об ошибке от API, в котором говорится, что URL не найден:
[
{
"url": "http://example.com/article-1,http://example.com/article-2,http://example.com/article-3",
"error_code": 404,
"error_message": "HTTP 404: Not Found",
"type": "error",
"version": "1.0"
}
]
1 ответ
Решение
Пытаться:
var urls = [
'http://example.com/article-1',
'http://example.com/article-2',
'http://example.com/article-3'
].map(encodeURIComponent).join(',');
$.getJSON('https://api.embedly.com/1/oembed?key=myapikey&urls='+urls)
.then(function(results){console.log(results)})