import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
line_messaging_api: {
type: "app",
app: "line_messaging_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.line.me/v2/bot/info`,
headers: {
Authorization: `Bearer ${this.line_messaging_api.$auth.long_lived_channel_access_token}`,
},
})
},
})
LINE Messaging API uses API keys for authentication. When you connect your LINE Messaging API account, Pipedream securely stores the keys so you can easily authenticate to LINE Messaging API APIs in both code and no-code steps.
Long-lived channel access tokens are channel access tokens that don't expire and can only be issued through the Messaging API channel. This can be issued at any time from the Messaging API tab in the Messaging API channel of the LINE Developers Console