with Langfuse and AppsFlyer?
Emit new event when user feedback (score) is submitted on a trace in Langfuse. See the documentation
Emit new event when an in-app event is recorded, such as a purchase or level completion. See docs here
Emit new event when a new trace is recorded in Langfuse. See the documentation
Emit new event when a user installs an app tracked by AppsFlyer. See docs here
Emit new event when a user uninstalls an app tracked by AppsFlyer. See docs here
Attach user feedback to an existing trace in Langfuse. See the documentation
Returns a list of the available event types for the specified endpoint type. See the documentation
Returns a list of the available message fields for each platform. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
langfuse: {
type: "app",
app: "langfuse",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.langfuse.$auth.region}.langfuse.com/api/public/observations`,
auth: {
username: `${this.langfuse.$auth.public_key}`,
password: `${this.langfuse.$auth.secret_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
appsflyer: {
type: "app",
app: "appsflyer",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://hq1.appsflyer.com/api/pushapi/v1.0/fields/windowsphone`,
headers: {
Authorization: `Bearer ${this.appsflyer.$auth.api_token}`,
"accept": `application/json`,
},
})
},
})