Google api 资源<;URL>;已使用链接预加载进行预加载,但在距窗口';s加载事件-Wix获取错误

Google api 资源<;URL>;已使用链接预加载进行预加载,但在距窗口';s加载事件-Wix获取错误,google-api,fetch,velo,Google Api,Fetch,Velo,我正在使用Google Analytics API查询用户帐户和视图 为此,我使用了多个WIX fetch函数(每个fetch函数取决于前一个函数),下面是其中之一: export function GetGAView (access_token, account_id,webPropertyId){ const url1 = "https://www.googleapis.com/analytics/v3/management/accounts/" const url2

我正在使用Google Analytics API查询用户帐户和视图 为此,我使用了多个WIX fetch函数(每个fetch函数取决于前一个函数),下面是其中之一:

export function GetGAView (access_token, account_id,webPropertyId){

const url1 = "https://www.googleapis.com/analytics/v3/management/accounts/"
const url2 = account_id
const url3 =  "/webproperties/"
const url4 =  webPropertyId
const url5 =  "/profiles?oauth_token="
const url6 = access_token


const url =url1.concat(url2,url3,url4,url5,url6).toString()
  console.log(url, 'view url')
return fetch(url, {"method": "get"})
  .then( (httpResponse) => {
    if (httpResponse.ok) {
      return httpResponse.json();
    } else {
      return Promise.reject("Fetch did not succeed");
    }
  } )
  .then(json => {//console.log(json)
  return json
    }
      )

  .catch(err => console.log(err));



}
11个工作正常的函数中的4个(由帐户id和属性id区分的相同函数)和7个函数返回控制台上显示的以下错误:

错误

/ga/oauth2callback?code=4%2XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX&scope=email+openid+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.email+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fanalytics&authuser=0&prompt=none:1 **The resource https://static.parastorage.com/services/editor-elements/dist/componentSdks.a8951fd0.bundle.min.js was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.**
这个错误意味着什么?如何解决这个问题? 我唯一发现相同错误的地方就是这里