Skip to content
This repository was archived by the owner on Feb 24, 2026. It is now read-only.
This repository was archived by the owner on Feb 24, 2026. It is now read-only.

Unable to Access Ephemeris Resource URLs - 404 Error #8

@lg-liwanxing

Description

@lg-liwanxing

Hello,
I recently cloned the project from GitHub and encountered an issue when trying to run it. It seems that some resource URLs are returning a 404 error, preventing the application from functioning correctly. For example, the URL in the following code snippet is not accessible:

fetch(
  `https://hdblacklist-proxy.herokuapp.com/https://hungry-goldwasser-6106a1.netlify.app/ephemeris-annual-forecast-${year}-1s-accuracy.json`
).then((response) => {
  response.json().then((jsonData) => {
    console.log("setting json data", jsonData);
    jsonData.year = year;
    ephemeris = jsonData;
    setStateEphemeris(jsonData);
    storage
      .setContents(
        `ephemeris-annual-forecast-${year}`,
        JSON.stringify(jsonData)
      )
      .then(function () {
        setCurrentActivation(getActivationData());
      });
  });
});

I have tried accessing the URLs directly:

Both return a 404 error, even when I change the year to other values.

This issue is not isolated to the above example; similar problems exist in other parts of the code as well.

Could you please help me resolve this issue or provide guidance on how to access the necessary resources?

Thank you for your assistance!

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions