GSON: Oczekiwano ciągu, ale był BEGIN_OBJECT?

Próbuję użyć GSON do przeanalizowania bardzo prostego JSON. Oto mój kod:

    Gson gson = new Gson();

    InputStreamReader reader = new InputStreamReader(getJsonData(url));
    String key = gson.fromJson(reader, String.class);

Oto JSON zwrócony z adresu URL:

{
  "access_token": "abcdefgh"
}

Otrzymuję ten wyjątek:

E/AndroidRuntime(19447): com.google.gson.JsonSyntaxException:     java.lang.IllegalStateException: Expected a string but was BEGIN_OBJECT at line 1 column 2

Jakieś pomysły? Jestem nowy w GSON.

questionAnswers(2)

yourAnswerToTheQuestion