Blogger JSON API Error: Value Not of type java.lang.String cannot be converted to JSONObject

120 Views Asked by At

I am trying to fetch blogger blog content into android application, for this I am using Blogger API v3, Whenever I try to fetch JSON object in android app I get an error "Value Not of type java.lang.String cannot be converted to JSONObject" below is my code:

MainActivity:

public class MainActivity extends Activity {

private TextView tmpText;
private final String api_key = "myApiKey";
private final String blog_id = "myBlogId";
private final String url = "https://www.googleapis.com/blogger/v3/blogs/"+blog_id+"?key="+api_key;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    tmpText = (TextView) findViewById(R.id.tempText);

    new Fetch().execute();
}

private class Fetch extends AsyncTask<String, String, JSONObject> {

    JSONObject jsonObject;

    @Override
    protected void onPreExecute() {
        super.onPreExecute();
        tmpText.setText("Loading...");
    }

    @Override
    protected JSONObject doInBackground(String... params) {
        JSONParser jsonParser = new JSONParser();
        jsonObject = jsonParser.getJSONFromUrl(url);
        return jsonObject;
    }

    @Override
    protected void onPostExecute(JSONObject object) {
        super.onPostExecute(object);
        tmpText.setText(""+object);
    }
}
}

JSONParser:

public class JSONParser {
static InputStream is = null;
static JSONObject jObj = null;
static String json = "";

// constructor
public JSONParser() {
}

public JSONObject getJSONFromUrl(String url) {
    // Making HTTP request
    try {
        // defaultHttpClient
        DefaultHttpClient httpClient = new DefaultHttpClient();
        HttpPost httpPost = new HttpPost(url);
        HttpResponse httpResponse = httpClient.execute(httpPost);
        HttpEntity httpEntity = httpResponse.getEntity();
        is = httpEntity.getContent();
    } catch (UnsupportedEncodingException e) {
        e.printStackTrace();
    } catch (ClientProtocolException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }
    try {
        BufferedReader reader = new BufferedReader(new InputStreamReader(
                is, "UTF-8"), 8);
        StringBuilder sb = new StringBuilder();
        String line = null;
        while ((line = reader.readLine()) != null) {
            sb.append(line + "\n");
        }
        is.close();
        json = sb.toString();
    } catch (Exception e) {
        Log.e("Buffer Error", "Error converting result " + e.toString());
    }
    // try parse the string to a JSON object
    try {
        jObj = new JSONObject(json);
    } catch (JSONException e) {
        Log.e("JSON Parser", "Error parsing data " + e.toString());
    }
    // return JSON String
    return jObj;
}
}

This is JSON Response when fetched through browser:

{
    "kind": "blogger#blog",
    "id": "myBlogId",
    "name": "myBlogName",
    "description": "myBlogDesc",
    "published": "myBlogPublishedDate",
    "updated": "myBlogUpdatedDate",
    "url": "myBlogUrl",
    "selfLink": "myBlogSelfLink",
    "posts": {
        "totalItems": 159,
        "selfLink": "myBlogTotalItemsSelfLink"
    },
    "pages": {
        "totalItems": 7,
        "selfLink": "myBlogTotalPagesSelfLink"
    },
    "locale": {
        "language": "en",
        "country": "",
        "variant": ""
    }
}

Error:

E/JSON Parser﹕ Error parsing data org.json.JSONException: Value Not of type java.lang.String cannot be converted to JSONObject
1

There are 1 best solutions below

0
On BEST ANSWER

You are doing POST instead of GET. Use HttpGet instead of HttpPost.