发起一个大于 7 天的投票的方法:
curl -H 'Idempotency-Key: <arbitrary_string>' -H 'Authorization: Bearer <your_access_token>' -X POST 'https://<example.com>/api/v1/statuses' -d 'status=<投票内容>' -d 'poll[expires_in]=2629746' -d 'poll[options][]=<第一个选项>' -d 'poll[options][]=<第二个选项>' -d 'poll[options][]=<第三个选项>’ -d 'poll[options][]=<第四个选项>' -d 'visibility=<public>'
参考:https://docs.joinmastodon.org/methods/statuses/
另外值得一提的是,我这个投票还设置了一个 hide_totals=true,就是说你投完票之后不能看到暂时的结果(只显示 1 人投过),得等到投票结束后才能看到完整结果.
这两个功能在网页版长毛象上都是没有的,可以考虑写个油猴脚本.
更正:不是显示 1 人投过,而是正确显示多少个人投过,但投票的分布不显示.