I’m trying:
const options = {
method: "POST",
url: 'ссылка',
form: {
"type": "...",
"version": "1",
"condition": {
"broadcaster_user_id": "1234"
},
"transport": {
"method": "webhook",
"callback": "https://example.com/callback",
"secret": "..."
}
},
headers: {
'Authorization': '... ',
'Client-Id': '...',
'Content-Type': 'application/json'
}
};
But I keep getting an error: missing or unparseable subscription condition
What am I doing wrong?