Hi, when i used old twitter widget i can dynamically alter search terms. Example:

new TWTR.Widget({
version : 2,
type : ‘search’,
id : ‘id’,
search : ‘query string’,
interval : 6000,
title : ‘title’,
subject : ‘subject’,
width : ‘auto’,
height : 300,
theme : {
shell: {
background : ‘#ffffff’,
color : ‘#333333
},
tweets: {
background : ‘#ffffff’,
color : ‘#444444’,
links : ‘#237791
}
},
features: {
scrollbar : true,
loop : false,
live : true,
hashtags : true,
timestamp : true,
avatars : true,
toptweets : true,
behavior : ‘all’
}
}).render().start();

Now i use new timeline widget and i can’t do this. We need this functionality because some our sites that use this functionality don’t work correctly. Do you plan to add this possibilities in new timeline widget? And if you plan to do this when i can use this features.

I am wondering the same thing, did you ever get a response or find a solution for this?

I created a twitter widget and plugged it into an app. I have integrated this html code in UIWebView i.e.
NSString *html="<a class=“twitter-timeline” href=“https://twitter.com/xxxxxxxxx/xxxxxxxx” data-widget-id=“xxxxxxxxxxxxxxxxxxx” height=“532”></body"
[self.webview loadHTMLString:html baseURL:nil];

It works fine on iOS > 6.0 but it does not work iOS < 6.0.
Any idea?

Hello I am using the Widget to embed a timeline regarding an hashtag. The widget comes up empty with a line saying “Hmm, an empty timeline. That’s weird.”.

The code is the folliowing (copied from Twitter widget editor) :
Tweets about “#parlamentocasadivetro”

Using firebug inspector I can see this warning:
“Widget configuration is not found. widgets.js:29”

Any idea?

Is that webview being served by a server or just being read directly? Likely your call there to ://platform.twitter.com/widgets.js isn’t loading because the relative protocol it’s trying to leverage is not http or https. Try explicitly using https://platform.twitter.com/widgets.js in this kind of context, though the widgets are really meant for websites rather than webviews.

I’m closing this super-long megathread as it’s become unmanageable to support. Please create a new topic and/or join an existing conversation about a similar issue you may be experiencing with embedded timelines.