Well, apparently Azure blob storage doesn't support JSONP straightaway, but it can be done.
For example, if I store this JSON in an Azure blob:
{"Name":"Valeriano","Surname":"Tortola"}
And I try:
<script type="text/javascript">
$.getJSON("https://myaccount.blob.core.windows.net/jsonptests/data?jsoncallback=?",
function (data) {
alert(data.Name);
});
</script>
It doesn't work. Well, actually the browser download the data but there is no call back. So, considering how JSONP works, if I save this JSON with the callback function:
dataCallback({"Name":"Valeriano","Surname":"Tortola"})
And I do:
<script type="text/javascript">
function dataCallback(data) {
alert(data.Name);
}
</script>
<script type="text/javascript" src="https://myaccount.blob.core.windows.net/jsonptests/data"></script>
Then the dataCallBack get executed :) The disadvantage is that the callback function name has to be harcoded, but it's better than nothing.
Happy days, but if anyone has a better way would be great.
Cheers.