with tawk.to and Facebook Graph API?
The tawk.to API lets you interact with the tawk.to live chat platform programmatically. Using Pipedream, you can connect tawk.to to a variety of other apps and services to automate notifications, sync chat data, and enhance customer support operations. You can trigger workflows on new messages, follow up on conversations, extract chat transcripts, or link chat events to CRM systems, issue trackers, or databases—all in real-time.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
tawk_to: {
type: "app",
app: "tawk_to",
}
},
async run({steps, $}) {
const data = {
"type": `business`,
}
return await axios($, {
method: "post",
url: `https://api.tawk.to/v1/property.list`,
headers: {
"Content-Type": `application/json`,
},
auth: {
username: `${this.tawk_to.$auth.api_key}`,
password: `f`,
},
data,
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
facebook_graph_api: {
type: "app",
app: "facebook_graph_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://graph.facebook.com/me/`,
headers: {
Authorization: `Bearer ${this.facebook_graph_api.$auth.oauth_access_token}`,
},
})
},
})