xxxxxxxxxx
30
// let url = "http://nytimes.com/api/v3/getarticle.json"
// function preload() {
// loadJSON(url);
// }
// httpPost(path, data, [callback], [errorCallback])
function setup() {
createCanvas(400, 400);
let path = 'https://gateway-wdc.watsonplatform.net/personality-insights/api/v3/profile?version=2017-10-13';
let data = {
apiKey: 'hlJPz47XFXryF7Mo8Iq3n1rZtNBLEgJRkYmhb8hwlnh2',
data: 'This is the text I want to evaluate personality'
};
httpPost(path, data, gotData, gotError);
function gotData(data) {
console.log(data);
}
function gotError(error) {
console.error(error);
}
}