Overview
Securing flows with third-party authentication services
Including a token in a request to Alphi
-H "Authorization: Bearer eyJhbGci..."Javascript Example
fetch('https://live.api-server.io/run/v1/YOUR_FLOW_ID', {
headers: {
'Authorization': 'Bearer ' + Outseta.getAccessToken()
// 'Authorization': 'Bearer ' + $memberstackDom.getMemberCookie()
}
)
.then((response) => response.json())
.then((data) => console.log(data));Last updated