这是我正在使用的以下代码
<script src="http://widgets.twimg.com/j/2/widget.js"></script>
<script>
new TWTR.Widget({
version: 2,
type: 'profile',
rpp: 4,
interval: 3000,
width: 'auto',
height: 281,
theme: {
shell: {
background: '#fff',
color: '#3a589c'
},
tweets: {
background: '#ffffff',
color: '#000000',
links: '#3a589c'
}
},
features: {
scrollbar: false,
loop: true,
live: true,
hashtags: true,
timestamp: true,
avatars: false,
behavior: 'default'
}
}).render().setUser(klatianstayahed).start();
</script>
我在http://widgets.twimg.com/j/2/widget.js上收到代码错误的地方如下。
TWTR=window.TWTR||{};(function(){var A=0;var D;var B=["init","setDimensions","setRpp","setFeatures","setTweetInterval","setBase","setList","setProfileImage","setTitle","setCaption","setFooterText","setTheme","byClass","render","removeEvents","clear","start","stop","pause","resume","destroy"];function C(H){var E=0;var G;var
F=["Twitter API v1.0 已弃用,此小部件已停止运行。","您可以将其替换为来自 ","有关替代 Twitter 工具的更多信息,请参阅https:// dev.twitter.com/docs/twitter-for-websites "];
if(!window.console){return }for(;G=F[E];E++){if(console.warn){console.warn("TWITTER WIDGET: "+G);continue}console.log(G)}}TWTR.Widget=function(E){switch(E.type){case"search":C("search?query="+escape(E.search));break;case"profile":this._profile=true;break;case"list":case"lists":C("list");break;default:return }};TWTR.Widget.ify={autoLink:function(){return{match:function(){return false}}}};TWTR.Widget.randomNumber=function(){};TWTR.Widget.prototype.isRunning=function(){return false};TWTR.Widget.prototype.setProfile=function(E){C("user?screen_name="+escape(E));return this};TWTR.Widget.prototype.setUser=function(E){if(this._profile){return this.setProfile(E)}C("favorites?screen_name="+escape(E));return this};TWTR.Widget.prototype.setSearch=function(E){C("search?query="+escape(E));return this};for(;D=B[A];A++){TWTR.Widget.prototype[D]=function(){return this}}})();
我按照 URL 中的说明进行操作
https://twitter.com/settings/widgets 和 https://dev.twitter.com/docs/embedded-timelines
但是我没有看到旧的外观,并且许多选项都像自动滚动一样被关闭,我无法从该小部件的标题中移动推文并将空调的图片放在推特上(这是我在上面发布的旧脚本) . 最令人尴尬的事情是在下面写给@klatianstayahed 的推文,我最不喜欢它并想删除该选项。任何机构都可以帮助我修改它并修改我的旧脚本,因为旧脚本可以工作,而不是我不想要的新脚本。我的要求是获取http://widgets.twimg.com/j/2/widget.js的更新脚本,因为它已经过时了。