在Curl中给出以下API调用,我将如何在JQuery中执行此操作?
curl -u#{api_key}:x -X GET https://# {your_account} .batchbook.com / service / people.xml
答案 0 :(得分:0)
您不希望使用jQuery,因为它会向您的用户公开您的API密钥。
如果你真的真的决定使用jQuery AJAX call(可能是某种内部系统,每个有访问权限的人都可以访问密钥),这里是代码:
$.ajax({
url: 'https://your-account.batchbook.com/service/people.xml',
username: 'your api key',
password: 'your password'
});