1

我正在尝试使用 mashape api 从 java 端访问 gaana api 我正在尝试从本地主机。但是,我在尝试连接 gaana api 时遇到问题。下面是我在一项休息服务中的代码(我使用的是 spring-security 和 java8)。我是 Btech-CSE 最后一年的学生。

@RestController
@RequestMapping("/api/ideas")
public class IdeaController {
    @RequestMapping(method = RequestMethod.GET)
    public void invokeGaanaAPI() throws UnirestException {
        System.out.println("hello");
     // These code snippets use an open-source library.
//      HttpServletResponse<JsonNode> response =

        Unirest.get("https://community-gaana.p.mashape.com/index.php?subtype=most_popular&type=song")
        .header("X-Mashape-Key", "iWEvla5JyCmshafdpHdjoSdtPsHPp1Ily4qjsnCEiVxbQsY5tn")
        .header("Accept", "application/json")
        .asJson();

        Unirest.get("https://community-gaana.p.mashape.com/user.php?type=registrationtoken")
                .header("X-Mashape-Key", "iWEvla5JyCmshafdpHdjoSdtPsHPp1Ily4qjsnCEiVxbQsY5tn")
                .header("Accept", "application/json")
                .asJson();
        System.out.println("hello");
    }
}

我需要帮助才能在这种情况下继续进行。任何形式的帮助对我来说都很好。我将数据设为空。所以,json转换抛出空指针异常。我热衷于做这个项目。

4

1 回答 1

0

您的数据是null因为您没有将Unirest.get()返回值分配给任何东西。

请阅读有关使用此API的文档。

于 2016-03-06T07:00:46.490 回答