Closed krebernisak closed 4 years ago
Please when sending requests with data arguments, make sure it's a valid base64 encoded JSON string. Here are two examples you can use:
{"get":"https://min-api.cryptocompare.com/data/price?fsym=ETH&tsyms=USD","path":"USD","times":100}
eyJnZXQiOiJodHRwczovL21pbi1hcGkuY3J5cHRvY29tcGFyZS5jb20vZGF0YS9wcmljZT9mc3ltPUVUSCZ0c3ltcz1VU0QiLCJwYXRoIjoiVVNEIiwidGltZXMiOjEwMH0=
{"get":"https://min-api.cryptocompare.com/data/price?fsym=BTC&tsyms=USD","path":"USD","times":100}
eyJnZXQiOiJodHRwczovL21pbi1hcGkuY3J5cHRvY29tcGFyZS5jb20vZGF0YS9wcmljZT9mc3ltPUJUQyZ0c3ltcz1VU0QiLCJwYXRoIjoiVVNEIiwidGltZXMiOjEwMH0=
These examples are taken from the Chainlink docs on Request & Receive Data.
Please when sending requests with data arguments, make sure it's a valid base64 encoded JSON string. Here are two examples you can use:
{"get":"https://min-api.cryptocompare.com/data/price?fsym=ETH&tsyms=USD","path":"USD","times":100}
=>eyJnZXQiOiJodHRwczovL21pbi1hcGkuY3J5cHRvY29tcGFyZS5jb20vZGF0YS9wcmljZT9mc3ltPUVUSCZ0c3ltcz1VU0QiLCJwYXRoIjoiVVNEIiwidGltZXMiOjEwMH0=
{"get":"https://min-api.cryptocompare.com/data/price?fsym=BTC&tsyms=USD","path":"USD","times":100}
=>eyJnZXQiOiJodHRwczovL21pbi1hcGkuY3J5cHRvY29tcGFyZS5jb20vZGF0YS9wcmljZT9mc3ltPUJUQyZ0c3ltcz1VU0QiLCJwYXRoIjoiVVNEIiwidGltZXMiOjEwMH0=
These examples are taken from the Chainlink docs on Request & Receive Data.