JavaScript を介してORCID APIにアクセスしようとしています。クロスドメイン呼び出しに JSONP を使用していますが、次のエラーが発生します。
キャッチされていない SyntaxError: 予期しないトークン <
以下は私が使用するコードです:
<html >
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
$.ajax({
type: 'GET',
url:'http://pub.orcid.org/0000-0002-5426-4031/orcid-bio',
dataType: 'jsonp'
}).done(function(res){alert("sucess")}).
fail(function(res){alert("failed"); console.log(res)}).
always(function(res){alert("complete")});
});
</script>
</head>
<body>
</body>
</html>