I'm currently trying to allow users to login with their Facebook account in my Java application. However, that requires a browser to show the Facebook-authenticate web-page.
I'm now looking for a "browser"-project which:
- is cross-os
- Supports single frames (i.e show a page at that url, no forward/back/refresh buttons)
- Supports relatively new web-standards (which Facebook uses)
- Preferably lightweight
I'm trying to avoid Eclipse SWT due to all the hassle it requires to get cross-os to be working. This is a relatively small project which I'd like to keep simple. A swing-based browser isn't an alternative either due to its lack of support for newer web-standards.
Is there any project which does what I'm looking for? Is there an alternative way of doing this, without a browser, that is?