Picasa API での POST に苦労しています。コードは次のとおりです。
$.ajax({
type: "POST",
url: 'https://picasaweb.google.com/data/feed/api/user/' + uid + '/albumid/' + album_id + '/photoid/' + photo_id,
crossDomain: true,
data: { content: content },
success: function() { alert("Success"); },
error: function() { alert('Failed!'); }
});
問題なく GET を介して既にいくつかの情報を取得しています。
Google でサービスをテストしようとすると、次のエラーが発生します。
XMLHttpRequest cannot load
https://picasaweb.google.com/data/feed/api/user/userid/albumid/albumid/photoid/photoid?content=foo%bar.
Origin http://localhost:3000 is not allowed by
Access-Control-Allow-Origin
.
そして、Firefoxで試してみると、リクエストヘッダーメソッドがに変更されOPTIONS
、ステータスが204: no content
.
また、変更しようとしましdatatype
たjsonp
が、HTTP メソッドが変更されGET
、画像に関する情報が取得されます。