It looks like you're new here. If you want to get involved, click one of these buttons!
function LoadDashboard()
{
var Parameter = "?api_key=" + "XXX" + "&access_token=" + "YYYY";
$.ajax({
type: "Get",
url: "https://api.kite.trade/portfolio/holdings" + Parameter,
success: function (data) {
console.log(data);
},
error: errorFunction,
});
}
Have you tried any of the solution mentioned here?