Я пытаюсь найти код для создания опроса в Твиттере с помощью скрипта Google при использовании электронной таблицы. У меня есть электронная таблица и большая часть кода, но я зациклен на формате params, который необходим для опроса.
Вот пример моего кода.
params = {entities: {
polls: [
{
options: [
{
position: 1,
text: "I read documentation once."
},
{
position: 2,
text: "I read documentation twice."
},
{
position: 3,
text: "I read documentation over and over again."
}
],
end_datetime: "Mon Mar 23 12:20:00 +0000 2020",
duration_minutes: 60
}
]
}
};
var response;
Logger.log(params);
if (params) {
params.muteHttpExceptions = false;
response = getTwitterService().sendTweet(status, params);
} else {
response = getTwitterService().sendTweet(status);
}
if (response.hasOwnProperty("errors")) {
throw (response.errors[0].message);
}