js アプリでTeamweekから計画を取得しようとしています。( API )
function get_teamweek_planning()
{
var api_url = 'https://teamweek.com/api/v2/',
api_key = '1234567',
object_type = 'projects';
$.ajax(
{
url: api_url + api_key + '/projects.json',
type: 'GET',
dataType: 'jsonp',
cache: false,
data: {},
success:function(response){
console.log('response:', response);
}
});
}
これは 403 (禁止) を返します。これは文書化されており、認証が失敗したことを意味します。しかし、どうすれば修正できますか?