Question

I want display my twitter feeds in the Home Page of my intranet site. How do I go about it?

Était-ce utile?

La solution

Twitter provides rich devloper API's. You can check that here and create your own. Else you can use the one twitter provides. Something like

<a class="twitter-timeline"
href="https://twitter.com/twitterdev"
data-widget-id="YOUR-WIDGET-ID-HERE">
Tweets by @twitterdev
</a>
<script type="text/javascript">
window.twttr = (function (d, s, id) {
var t, js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id; js.src= "https://platform.twitter.com/widgets.js";
fjs.parentNode.insertBefore(js, fjs);
return window.twttr || (t = { _e: [], ready: function (f) { t._e.push(f) } });
}(document, "script", "twitter-wjs"));
</script>

https://dev.twitter.com/web/embedded-timelines

Autres conseils

You can download few of the existing FREE Twitter Web Parts

Free Sharepoint Twitter Web Part

Search for Twitter Feed

Twitter Web Part

Licencié sous: CC-BY-SA avec attribution
Non affilié à sharepoint.stackexchange
scroll top