簡體   English   中英

RapidApi 安卓

[英]RapidApi Android

我正在使用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、數據和參數值

編輯 1:這是我想在 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();

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

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM