You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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"];
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)
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
The text was updated successfully, but these errors were encountered: