When contacting the Embedly API like this:
$.getJSON('https://api.embedly.com/1/oembed?' + $.param({
url: 'http://example.com/article-1',
key: "myapikey"
}));
I get the embed data. But when i try doing it with multiple URLs:
$.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"
}));
I get an error response from the API saying the URL was not found:
[
{
"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"
}
]