0
私は自分のウェブサイトに1つのtwitterの瞬間を埋め込むことができます。Twitterが公開apiに似ていれば好奇心が強いので、毎日トップ4のTwitterの瞬間を自動的に得ることができますtwitter moment APIにアクセスする方法
//This is i used their oembed to get one moment, if I know the id
<script sync src="https://platform.twitter.com/widgets.js"></script>
twttr.widgets.createMoment(
'650667182356082688',
document.getElementById('widget-content-twitter'),
{
limit: 1
}
);