jquery xmlパーサーを使用して、picasaからアルバムの名前を取得しようとしています。しかし、「https://picasaweb.google.com」リンクを使用すると機能が動作しません。私が間違っていることの手がかりは?Jquery XML Parse URLの問題
<script>
$(document).ready(function()
{
$.ajax({
type: "GET",
url: "https://picasaweb.google.com/data/feed/api/user/userID?kind=album&access=visible",
dataType: "xml",
success: parseXml
});
});
function parseXml(xml)
{
$(xml).find('entry').each(function()
{
$("#output").append($(this).find('title').text() + "<br />");
});
}
</script>
<div id="output"></div>