I am a little new to Java Playframework and testing out the Facebook authentication.
public static Result fbLogin(){
String token_code_url = "https://www.facebook.com/dialog/oauth?client_id=MY_APP_ID&redirect_uri=http://localhost:9000/&response_type=token";
return redirect(token_code_url);
}
public static Result index() {
Result loginResult = fbLogin();
return loginResult;
}
This opens Facebook, and i give access to my app.
it returns with http://localhost:9000/#access_token=ACCESS_TOKEN
How do i get the ACCESS_TOKEN ?
Do I need to configure the routes ? I seem to get a This webpage has a redirect loop on the browser.