1

次のように Embedly API に接続する場合:

$.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"
}));

URL が見つからないというエラー応答が API から返されます。

[
    {
        "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"
    }
]
4

1 に答える 1

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)})
于 2016-03-21T14:38:27.933 に答える