Facebook server side login sends response in the format:
access_token=USER_ACCESS_TOKEN&expires=NUMBER_OF_SECONDS_UNTIL_TOKEN_EXPIRES
Is there a way to parse this conveniently in Java, other than writing custom code? Something like parse_str in PHP.
EDIT: This question has nothing to do with query string or request, It is about parsing request body in the above format.