Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am writing a browser app to update status' / tweet to Facebook and Twitter automatically on users behalf.

My issue is I need this app to work within an iframe as the app is written in PHP but needs to work within an ASP site.

Is this going to be possible? I have tested this and it seems to update the status when already authenticated but I am having issues authenticating from within the iframe.

Many thanks in advance for any help.

share|improve this question

1 Answer

up vote 0 down vote accepted

Twitter won't allow you to embed its OAuth authentication parts. However, actual requests or anything else isn't a problem.

I'd assume that this is the same for Facebook, especially when you're using PHP to make the requests.

To answer your (second) question: you can probably just get all query data in ASP and pass it to the PHP frame. I've never done ASP but in PHP that would be something as simple as <iframe src='frame.php?<?php echo $_SERVER['QUERY_STRING']; ?>'>

share|improve this answer
yeah I have tested this out and it seems to work when already authenticated, it updates the status no problem. The problem is the getting it to authenticate. So I assume there is no way round this then... – LeeTee Dec 13 '11 at 12:33
In that case, please click the "This answered my question" icon next to the answer. Thanks :-) – Tom van der Woerdt Dec 13 '11 at 12:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.