我的应用程序与Mendeley上的OAuth1配合良好。由于不再支持OAth1,因此我必须将我的应用迁移到OAuth2才能获取数据。

我得到令牌响应,但是我无法请求任何内容,程序抛出NullPointerException。

我正在测试此源代码here

我也使用Apache OLTU和Apache HTTPClient

这是我尝试运行的代码:

static OAuthClientRequest request;
static OAuthClient oAuthClient;

static OAuthJSONAccessTokenResponse tokenResponse ;
static String CATALOG_URL="https://api-oauth2.mendeley.com/oapi/documents/groups?items=10";


request = OAuthClientRequest
            .tokenLocation("https://api-oauth2.mendeley.com/oauth/token")
            .setClientId(Client_ID)
            .setClientSecret(Secret)
            .setGrantType(GrantType.CLIENT_CREDENTIALS)
            .setScope("all")
            .buildBodyMessage();

System.out.println("is set up");

oAuthClient = new OAuthClient(new URLConnectionClient());
tokenResponse = oAuthClient.accessToken( request, OAuthJSONAccessTokenResponse.class);

System.out.println("token is retrieved");

HttpGet httpGet = new HttpGet(CATALOG_URL);
httpGet.setHeader("Authorization", "Bearer " + tokenResponse.getAccessToken());

//this is where the Exception is thrown
       HttpResponse httpResponse =  apacheHttpClient.execute(httpGet);
//

System.out.println("this is it: "+httpResponse.toString());

String responseAsString = EntityUtils.toString(httpResponse.getEntity());
System.out.println(responseAsString);


我得到的异常是:

Exception in thread "main" java.lang.NullPointerException


我现在在问自己为什么会这样。
CATALOG_URL来自Mendeley网站,应返回包含所有公共组的列表的第一页。

我还尝试了与Mendeley网站不同的URL。

HttpGet语句可能有什么问题吗?

有人有任何提示吗?

最佳答案

因为使用的变量(apacheHttpClient)尚未初始化,所以您收到NullPointerException。尝试先做

apacheHttpClient = ApacheHttpTransport.newDefaultHttpClient();

09-05 11:52