Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I create a popup window when doing oauth?

I'm would like to do what lifestream and other sites have done with oauth authentication by using a pop up window. They open a popup window which somehow wasn't blocked by the popup blocker and grey out their site. Then upon allowing oauth access it says redirecting back to original site and kills the popup and returns the site to normal color. How would I go about doing something like this? If I posted anything I shouldn't have its alright because all these accounts are bogus anyway.

enter image description here

enter image description here

enter image description here

like image 226
Xavier Avatar asked Jan 29 '11 16:01

Xavier


1 Answers

In javascript, the window.open() function will do this for you. With its api, you can set its location and get data from events occurring in it.

Popup blockers will not block this popup if it is created from a function that is executed when the user clicks a button. Popup blockers only block windows if there was no user input provided to create it.

like image 177
linusthe3rd Avatar answered Oct 05 '22 05:10

linusthe3rd