I am developing an Eclipse plugin where user needs to login to their Facebook account in an SWT brower. I am using the way, described here to try to get the access token from the url. It had worked well until today. The problem is that redirected uri is no longer followed by "access_token=..." any more. Then I mannually tried to get the access token from url in real browsers. It works on Chrome and FireFox, not on IE. In my progrm, the SWT browser is defined as follows:
Browser browser = new Browser(container, SWT.NONE);
I guess it must've used IE in the background and IE for some reason hides the access_token from the url. Any idea for unhiding the access token?
Any input is greatly appreciated!