tags:

views:

328

answers:

2

Does anyone have a sollution for embedding twitter or all of its functionality into an i-frame....

Basically what i want is to embed Twitter within my web - app so my clients can use it as a marketing tool while also using my application. IF someone has an API sollution completed that i can embed through an IFrame i am willing to look at it for purchase

If you know of a sollution let me know..

+1  A: 
<iframe src="http://twitter.com/someonespage" width="800" height="500">
  <p>Your browser does not support iframes.</p>
</iframe>

If you want more control than this, you'll probably need to use the Twitter API to build your own solution.

Here's a great blog on integrating the Twitter API directly into your web App.

rockinthesixstring
BUt i want my user to be able to log in and post etc...When you go to twitter and log in it takes over the whole frame...
Rico
That's Twitter's doing. They probably don't want you doing this. Don't like it? Make a Twitter clone.
ceejayoz
I edited my answer above. You should check out the Twitter API. http://apiwiki.twitter.com/
rockinthesixstring
I am reviewing the API but if someone knows a good sollid sollution already done i am looking for suggestions
Rico
There are tons of other solutions out there that are already doing what you're doing. If you want in in your own web page, then you need to build it all yourself. Check out http://CoTweet.Com for some ideas on the robustness of the API.
rockinthesixstring
A: 
<iframe src="http://m.dabr.co.uk" width="800" height="500">
  <p>Your browser does not support iframes.</p>
</iframe>
myfreeweb
Hmm, looks remarkably similar to the post above.
rockinthesixstring
So what? I can't copy)
myfreeweb
you can't log into this when embedded in a frame
Rico
I will edit this this works in IE6 on xp but not on IE8 Windows 7
Rico
IE?? Why you are using it?
myfreeweb
[IE?? Why you are using it?] - it's not about HIM using it... it's about his USERS using it. IE8 has all kinds of security features that basically KILL iFrames. Unfortunately it's DEVELOPERS who need to worry about making their app cross browser compatible. Not doing so would be a mistake. Forcing users to NOT use IE is a mistake.
rockinthesixstring