Poll
여론 조사 내용을 설정하고 해당 메세지(app='poll')를 전송할 수 있다.
Arguments
Returns
Example
const params = {
question: 'Should I stay or should I go?',
choices: ['stay', 'go', 'fly']
};
client.post.poll(params, wif, function(err, result) {
console.log(result);
});Last updated
Was this helpful?