我需要在下面的api调用中添加额外的标头参数:
https:/// app / jupyter / api / contents // notebooks?content = 1&1558269473884
https:/// app / jupyter / api / sessions?1558269528572
https:/// app / jupyter / api / terminals?1558269578576
目前,在打开jupyter实验室标签的情况下,会话超时没有发生,要解决此问题,我需要传递一些额外的标题。
我尝试了以下方法:
const newHeader = {
test: 'request'
};
ServerConnection.makeSettings({ init: { headers: newHeader } });