Hello, since yesterday i have a problem with the direct message post. I’m using oAuth and based user with Node.Js. so i use :
consumer_key: '...', consumer_secret: '...', access_token_key: '...', access_token_secret: '...' })
and surely after checking all my keys access are, this is well written and filled
i have also activated
Read, write, and direct messages
but still, it’s not working. 
EDIT : i forgot; this is my code for the direct messages
client.post('direct_messages/events/new', {
type: 'message_create',
message_create: {
target: {
recipient_id: "...",
message_data: {
text: "Hi"
}
}
}
})