Hello,
I'm looking for creating a new wishlist with this Google App Script :
function foo() {
var url = '
https://api.brickowl.com/v1/wishlist/create_list' var data = {
'key' : '1ebf674f5a9650cdb0fa41246d53376f2f82333473baba9852e68754633c2c2f',
'name' : 'toto'
};
var options = {
'method' : 'post',
'contentType' : 'application/json',
'payload' : JSON.stringify(data)
};
var responsePost = UrlFetchApp.fetch(url, options)
Logger.log(responsePost)
}
All GET requests work but the Post requests sent me a 403 "access denied" error
An idea what i need to do ?
Thx a lot !
Comments