Obecnie używam apl imdb z http://imdbapi.org, aby uzyskać informacje o filmie. Kiedy używam API i próbuję otworzyć to url w java, daje mi to błąd 403. Adres URL powinien zwracać dane w JSON. Oto mój kod tak daleko (Java 7):Dlaczego pojawia się błąd 403, gdy próbuję otworzyć adres URL?
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.MalformedURLException;
import java.net.URL;
public class Test {
public static void main(String[] args) {
URL url =null;
try {
url = new URL("http://imdbapi.org/?q=batman");
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
InputStream is =null;
try {
is = url.openConnection().getInputStream();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
BufferedReader reader = new BufferedReader(new InputStreamReader(is) );
String line = null;
try {
while((line = reader.readLine()) != null) {
System.out.println(line);
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
try {
reader.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println(line);
}
}
To rzeczywiście dziwne, ponieważ ten URL działa na mnie. – fge