Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Request failed for https://www.quandl.com returned code 404 #4

Open
vfstevens opened this issue Feb 4, 2021 · 3 comments
Open

Request failed for https://www.quandl.com returned code 404 #4

vfstevens opened this issue Feb 4, 2021 · 3 comments

Comments

@vfstevens
Copy link

Hi,

I tried to Connect to the Sharadar/SF1 database with the add-on, yet upon clicking the Reading from dataset, I get an error:
Exception: Request failed for https://www.quandl.com returned code 404. Truncated server response: {"error":"Requested entity does not exist."} (use muteHttpExceptions option to examine full response)

Not sure what Im doing wrong

@jlkalberer
Copy link

This example seems to be pretty old at this point. I got this working by making changes to the script:

- var api_version = "1";
+ var api_version = "3";

and

- var column_names = JSON.parse(result_json)["column_names"];
- var data = JSON.parse(result_json)["data"];

+ var json = JSON.parse(result_json)["dataset"];
+ var column_names = json["column_names"];
+ var data = json["data"];

@Ronix5
Copy link

Ronix5 commented Feb 14, 2021

I made the changes you suggested and am now getting the following error when I used the " Sharadar/SF1" code:

Exception: Request failed for https://www.quandl.com returned code 404. Truncated server response: {"quandl_error":{"code":"QECx02","message":"You have submitted an incorrect Quandl code. Please check your Quandl codes and try again."}} (use muteHttpExceptions option to examine full response)

@luccast
Copy link

luccast commented Apr 30, 2021

Same issue here. Any solutions yet?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants