This topic was automatically generated from Slack. You can find the original thread here.
The url is reachable from any browser and also from other services similar to yours. It is just not working while the following basic example provided by you it is just fine:
// To use any npm package on Pipedream, just import it
import axios from "axios"
export default defineComponent({
async run({ steps, $ }) {
const { data } = await axios({
method: "GET",
url: "https://pokeapi.co/api/v2/pokemon/charizard",
})
return data.species
},
})
That makes sense. For Teams customers we have a managed HTTP proxy service, but that has a fixed IP address, and I don’t believe it’s in the EU region, I believe it’s in US East 1, which is in the states.
You can spin up a virtual machine in your region install Squid or some HTTP proxy service, then use this tutorial to pass requests through it.