我正在尝试在我的 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(禁止)。这是记录在案的,意味着身份验证失败。但是我该如何解决呢?