Сформировал API, выбрал тариф тестовый, пытаюсь выполнить get url, но получаю {"message":"Forbidden","status":403}
Как долго он активируется?
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.JsonNode;
import com.mashape.unirest.http.Unirest;
import com.mashape.unirest.http.exceptions.UnirestException;
public class MainClass {
public static void main(String[] args) {
try {
HttpResponse<JsonNode> jsonResponse
= Unirest.get("https://api.weather.yandex.ru/v1/forecast?lat=55.75396&lon=37.620393&extra=true")
.header("accept", "application/json").queryString("X-Yandex-API-Key", "b4b1d000-8790-4e0b-afcc-738172390e3f")
.asJson();
System.out.println(jsonResponse.getBody());
} catch (UnirestException e) {
e.printStackTrace();
}
}
}