I have the following url and i am not able to retrieve the url parameters,
The jsp code is given below. and it returns null values.
<%
String token=(String)request.getParameter("access_token");
String type=(String)request.getParameter("token_type");
out.print("token = "+token);
out.print("\n");
out.print("type = "+type);
%>