Edit - Wasn't getting a response so let me ask this. Can I do this?
<a href="http://m.facebook.com/...." target="_webapp">facebook button</a>
Let the page load on top of the current page and listen for the window.location.hostname before the page actually redirects with jquery?
Facebook site url = http://www.mysite.com
In a mobile app, you can use fb(YOUR_APP_ID)://authorize/ to request for auth_token.
Using jquery, how can I catch the redirected url before the page goes to it?
i.e.
CALLBACK_URL = fb(YOUR_APP_ID)://authorize/
url = "https://m.facebook.com/dialog/oauth?client_id=YOUR_APP_ID&redirect_uri=CALLBACK_URL"
WebView.navigate(url)
WebView.execture_js('$(document).ready(function() {
$("body").ajaxComplete(function(e, xhr, settings) {
if (xhr.getResponseHeader("Location").hostname == "fb(YOUR_APP_ID)://authorize/"){
alert(xhr.getResponseHeader("Location"));
// and redirect back to action in my app...
}
});
});')

bindto theclickonaand read itshref– naugtur Jun 28 '11 at 14:16redirectin terms of existing standards (like is it HTTP redirect? what redirects?), and how/when it happends – naugtur Jun 29 '11 at 7:24