with Botmaker and Microsoft Teams Bot?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
botmaker: {
type: "app",
app: "botmaker",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.botmaker.com/v2.0/messages`,
headers: {
"access-token": `${this.botmaker.$auth.access_token}`,
},
})
},
})
By connecting a Microsoft Teams Bot to Pipedream, you can build interactive chat experiences and automate messaging workflows using any of the thousands of apps available on Pipedream.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
microsoft_teams_bot: {
type: "app",
app: "microsoft_teams_bot",
}
},
async run({steps, $}) {
return "Azure Bot successfully authenticated."
},
})