Comment on page
Poll
Anyone can set up a poll by sending a message with app=’poll’.
- question
string
required Question of the poll. - choices
array
required Allowed set of choices.
Returns the unit hash.
const params = {
question: 'Should I stay or should I go?',
choices: ['stay', 'go']
};
client.post.poll(params, wif, function(err, result) {
if (err) return console.error(err);
console.log(result);
});
Last modified 2yr ago