是否有人知道NYT API访问中是否有更改,或者如何重新路由访问API以使连接成功?
对于我几年前的MFA论文,我使用Extendables库将NYT API数据编写到InDesign中,并且可以很好地调用必要的API URL。现在,在一段时间没有使用我写的脚本之后,df.groupby(level=0).apply(lambda df: df.add(a, axis=0))
a b
A one 100 101
two 103 104
B one 104 105
two 107 108
似乎不再建立连接,并且我从Extendables "http.get()"
收到错误(来自{{1}文件结构)和"index.jsx"
突出显示"core-packages/http/lib"
,它在ESTK中返回"this.process_headers = function () {"
。
我的代码片段是:
"this.status = raw_head[0].split(' ')[1].to('int');"
ESTK将编写"undefined is not an object"
,但永远不会通过。{1}}
var article_callURL = String(ny_article_search_baseURL + "&begin_date=" + begin_date + "&end_date=" + end_date + "&page=" + offset + sort_oldest + ny_article_key);
$.writeln(article_callURL);
//==Using extendables.jsx
var http = require("http");
var article_response = http.get(article_callURL);
if (article_response.status_code == 200) {
$.writeln(article_response.body);
} else {
$.writeln("Connection failed");
}
码。如果有人可以帮我解决这个问题,我们将非常感激。