Base64-decode raw HTTP payload
@dylburger
code:
data:privatelast updated:3 years ago
today
Build integrations remarkably fast!
You're viewing a public workflow template.
Sign up to customize, add steps, modify code and more.
Join 800,000+ developers using the Pipedream platform
steps.
trigger
HTTP API
Deploy to generate unique URL
This workflow runs on Pipedream's servers and is triggered by HTTP / Webhook requests.
steps.
base64_decode_string
Accepts a base64-encoded string, returns a decoded UTF-8 string
params
Data
{{steps.trigger.raw_event.body_b64}}
string ·params.data
code
async params => {
1
2
3
}
4
const buffer = Buffer.from(params.data, 'base64');
this.data = buffer.toString('utf8');