10/02/2024
Recently I wrote about the same topic but using AWS Lambda ( So I wanted to see if I could do it using the equivalent in OCI: Oracle Functions. Most of the steps I followed are on this blog: The code for the nodejs OCI Functions is: const fdk=require('/fdk'); fdk.handle(async function(input){ var GtfsRealtimeBindings = require('gtfs-realtime-bindings'); var request = require('request'); …...
Recently I wrote about the same topic but using AWS Lambda ( So I wanted to see if I could do it using the equivalent in OCI: Oracle Functions. Most of the steps I followed are on this blog: The co…