-3

我在搞乱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();
4

1 回答 1

0

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

于 2017-12-04T00:32:17.983 回答