RapidApi Android

时间:2017-12-03 23:31:10

标签: java android api

我正在使用RapidAPI,我不会承担他们提供的代码。

有人可以给我一个拆机吗?它说为了访问api我必须编写以下代码

Map<String, Argument> body = new HashMap<String, Argument>();

body.put("ParameterKey1", new Argument("data", "ParameterValue1"));
body.put("ParameterKey2", new Argument("data", "ParameterValue2"));

try { 
    Map<String, Object> response = connect.call("APIName", "FunctionName",  body);
if(response.get("success") != null) { }

什么是参数键1和2,数据和参数值

edit1:这是我想在android studio中使用的代码片段

HttpResponse<JsonNode> response = Unirest.get("https://spoonacular-recipe-
food-nutrition-v1.p.mashape.com/recipes/search?
diet=vegetarian&excludeIngredients=coconut&instructionsRequired=
false&intolerances=egg%2C+gluten&limitLicense=false&number=
10&offset=0&query=burger&type=main+course")
.header("X-Mashape-Key", 
"Xxxxxx")
.header("X-Mashape-Host", "spoonacular-recipe-food-nutrition-
v1.p.mashape.com")
.asJson();

1 个答案:

答案 0 :(得分:0)

您的示例代码正在使用此https://github.com/zeeshanejaz/unirest-android。如果你想使用那个片段,你可以从那开始。