In my project i have to implement login with gmail and storing data into datastore(bigtable),but i got an exception,error code is 500.
com.google.gson.stream.MalformedJsonException:
Use JsonReader.setLenient(true) to accept malformed JSON at line 1 column 12 path $
The line number is 88 and the code is:
JsonObject json = (JsonObject)new JsonParser().parse(outputString.trim());
String access_token = json.get("access_token").getAsString();
System.out.println(access_token);