You can use the HERE API to build a variety of things, including:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
here: {
type: "app",
app: "here",
}
},
async run({steps, $}) {
// Returns a sample set of weather observations for Berlin
// See https://developer.here.com/documentation/weather/dev_guide/topics/example-weather-observation.html
return await axios($, {
url: `https://weather.ls.hereapi.com/weather/1.0/report.json?apiKey=${this.here.$auth.apikey}&product=observation&name=Berlin-Tegel`,
})
},
})
Emits the weather report for a specific ZIP code on a schedule
HERE uses API keys for authentication. When you connect your HERE account, Pipedream securely stores the keys so you can easily authenticate to HERE APIs in both code and no-code steps.
Sign up for a HERE account, then create a new application and associated API key — see the HERE Authentication Docs for step-by-step instructions.
Enter your API key below.