You need to sign in to do that
Don't have an account?

how to solve this error The method parse(String) is undefined for the type JSON
Hi All,
DefaultHttpClient client = new DefaultHttpClient();
HttpPost oauthPost = new HttpPost(baseUrl);
HttpResponse response = client.execute(oauthPost);
int code = response.getStatusLine().getStatusCode();
Map<String, String> oauthLoginResponse = (Map<String, String>) JSON.parse(EntityUtils
.toString(response.getEntity()));
eclipse show the error The method parse(String) is undefined for the type JSON
plz need help
yes im using sample code , no missing references