udacity / ud843-QuakeReport

Discover earthquake activity around the world.
Other
343 stars 1.17k forks source link

URL fix to solve the error 301 Moved Permanently #73

Closed crlsndrsjmnz closed 7 years ago

crlsndrsjmnz commented 7 years ago

API is giving me error 301 Moved Permanently on QueryUtils.java, line 113.

Full response is:

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">301 Moved Permanently

Moved Permanently

The document has moved here.

To fix it, I changed the USGS_REQUEST_URL variable to use HTTPS as shown below:

private static final String USGS_REQUEST_URL =
        "https://earthquake.usgs.gov/fdsnws/event/1/query";

Please check other branches and DidYouFeelIt app.