I have just deployed a smart contract that uses a get request from my chainlink oracle. In my contract it is called as shown below:
Chainlink.Request memory request = buildChainlinkRequest(jobId, address(this), this.fulfill.selector);
request.add("httpget", "http://xx.xxx.xx.xxx:3000/heartrate/api?code=1&zone=2&timeInterval=1d");
In my Chainlink Oracle, I am receiving the following error:
I suspect it might be to do with I am using httpgetwithunrestrictednetworkaccess as a task parameter in my Chainlink job spec and it is only supported for web types and not runlogs?
