bttmly / nba

Node.js client for nba.com API endpoints

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Error: 404 Not Found

adgarcis opened this issue · comments

Hello, good morning.
Since yesterday when I try to access the method: NBA.stats.scoreboard({ LeagueID: "00", DayOffset: "0", gameDate: today}); it returns a 404 error. From what I've been looking at, it seems that the official NBA endpoint doesn't currently exist. How can I obtain this information now?

Best regards, and thank you.

I have found the solution. Is in package nba-client-template. You need to change in the file nba.json:165

from this:

{
      "name": "scoreboard",
      "url": "http://stats.nba.com/stats/scoreboard",
      "parameters": [
        "LeagueID",
        "DayOffset",
        "gameDate"
      ]
    },

to this:

{
      "name": "scoreboard",
      "url": "http://stats.nba.com/stats/scoreboardv2",
      "parameters": [
        "LeagueID",
        "DayOffset",
        "gameDate"
      ]
    },