Closed GoogleCodeExporter closed 8 years ago
Issue 156 has been merged into this issue.
Original comment by deepak.a...@3pillarglobal.com
on 29 Jan 2013 at 1:19
This doesn't seem to be already implemented. It requires to change parameter
from display=page to display=popup. We're working on this.
Deepak
Original comment by deepak.a...@3pillarglobal.com
on 29 Jan 2013 at 1:20
Hi,
To do this, you would need to alter the Facebookwrapper. I've provided sample
code below. Since, it is very specific to Fb, at the moment we aren't updating
standard Library.
public override OAuthStrategyBase AuthenticationStrategy
{
get {
var strategy = _AuthenticationStrategy ?? (_AuthenticationStrategy = new OAuth2_0server(this));
((OAuth2_0server)strategy).BeforeDirectingUserToServiceProvider += (p)=>p.Add(new QueryParameter("display","popup"));
return strategy;
}
}
Deepak
Original comment by deepak.a...@3pillarglobal.com
on 11 Feb 2013 at 5:41
Original issue reported on code.google.com by
monodee...@gmail.com
on 4 Jan 2013 at 3:41