To add on to this, kbeimfohr, this has to do with creating an embedded twitter feed from Twitter. If someone else wanted to do this, go to https://twitter.com/settings/widgets, Create New, make sure to check mark the Auto-expand photos checkbox, and create your widget.
It will look like this:
<a class="twitter-timeline" href="https://twitter.com/Amely_llama" data-widget-id="690242311326949376">Tweets by @Amely_llama</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
With the code copied, paste it to the Canvas HTML box, and also paste in Kyle's teacher's code, and exchange the widget_id (numbers up to the & but not including it). Looks something like this, noticed the numbers changed after the widget-id.
<iframe style="display: block; margin-left: auto; margin-right: auto;" src="https://www.edu-apps.org/tools/twitter/twitter_embed.html?widget_id=690242311326949376&url=https%3A%..." width="444" height="640"></iframe></p>
Next, replace the part after the https, in this case, the link https://twitter.com/Amely_llama" and include a closing ;"
It will look like this:
<iframe style="display: block; margin-left: auto; margin-right: auto;" src="https://www.edu-apps.org/tools/twitter/twitter_embed.html?widget_id=690242311326949376&url=https://t..." width="300" height="450px"></iframe>
Now you can delete the remaining Javascript gibberish, everything after your closing </iframe> tag. You will probably want to change the height to what you set it in the Widget Configurator, (the default is 600px), or else you will get 2 scrolling bars, one from the twitter embed, and one from the iframe.
I like this one better than the LTI, because it responds to the mobile app size. With the LTI one, the mobile app requires you to scroll to the right to see the entire tweet, and I have been unable to remedy that. This is specifically about embedding the Twitter LTI on a content page, not with the Module's External Tools link. I needed it within a home page. Embedding it as a tool makes the mobile app require me to sign in to the webpage instead.
Hope this helps someone else out!