Using the ExpoFP API, you can easily develop applications that can take advantage of the huge range of features available on the Expo platform.
Here are some examples of what you can build using the ExpoFP API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
expofp: {
type: "app",
app: "expofp",
}
},
async run({steps, $}) {
const data = {
"token": `${this.expofp.$auth.api_token}`,
}
return await axios($, {
method: "post",
url: `https://app.expofp.com/api/v1/list-events`,
headers: {
"Content-Type": `application/json`,
},
data,
})
},
})
ExpoFP uses API keys for authentication. When you connect your ExpoFP account, Pipedream securely stores the keys so you can easily authenticate to ExpoFP APIs in both code and no-code steps.
To retrieve your API Token,