如何从java中给定json的jsonobject获取访问令牌值? 这是我的json
{ "access_token": "1787989djhjhak9cj8", "token_type": "bber", "scope": "read write trt" }
答案 0 :(得分:1)
你的json是一个字符串。 1)首先将JSON字符串转换为JSONObject 2)从JSONObject,您可以请求access_token
JSONObject jsonObject = new JSONObject("{ \"access_token\": \"1787989djhjhak9cj8\", \"token_type\": \"bber\", \"scope\": \"read write trt\" }");
Object accessToken = jsonObject.get("access_token");