I have a usage tracking library(snowplow) which needs to send data to a kinesis stream collector. We are using KrakenD in the middle for api gateway. Inorder to secure this, I need to pass access token. Snowplow at present does not allow custom headers at the present, which prevents me from sending this data. Is there an option in KrakenD which allows it to validate a token sent in the body rather than the header?
Can KrakenD validate access keys sent in the body rather than header
194 views Asked by dstech At
1
There are 1 answers
Related Questions in KRAKEND
- Unable to validate the token: Get "": unsupported protocol scheme ""
- KrakenD as a Proxy for Nginx Frontend
- How to send HTTP requests from KrakenD to RabbitMQ and create queues dynamically
- How does KrakenD CE redirect requests to different backend hosts based on different request IPs?
- How to configure KrakenD gateway with a reference token? (not jwt)
- Best practices API Get
- docker-compose run multiple commands for a krakend
- Krakend can not use NoOp encoding with more than one backends connected to the same endpoint
- Krakend disable TLS/SSL verification
- Krakend lua set response body returns nil
- Django GraphQL Endpoint Not Found When Requested via Krakend API Gateway
- Parse content of files in subdirectories with golang templates
- krakend lua scripting fail by load lib
- krakend spring security. Basic endpoint authentication won't work
- Krakend added number to request body
Related Questions in SNOWPLOW
- SnowPlow rs loader server not loading data from s3 to redshift cluster
- Calculate total user engagement on mobile
- 400 Bad Request while sending data to Google Tag Manager
- Error: An item with the same key has already been added. Key: stm, when I using Snowplow.tracker NuGet package
- Snowplow stopped worked on iOS after upgrading Capacitor
- how to setup snowplow html5 media tracking using GTM
- how to set a custom Eastern DateTime in Snowplow Stream Collector or Is there any method or feature available in the Snowplow/Snowplow Web package?
- How to integrate with Snowflake after Kafka Enrichment stream
- Error "Snowplow: Function failed" from ping.js in console
- Can KrakenD validate access keys sent in the body rather than header
- Snowplow event tracker throwing error when react native tracker is used
- How to properly track events on a embeded Spotify player?
- SnowPlow Analytics Schemas
- Snowplow BigQuery stream loader throwing an error
- snowplow browser tracker request getting blocked in the browser
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
KrakenD JWT validation expects you to send the token data in the
Bearerheader or inside a cookie. You cannot validate a token sent in the body.I don't understand what is the problem of Snowplow not accepting custom headers. The validation would occur on KrakenD side and KrakenD does not send any custom header to Snowplow unless you explicitly add them in the
input_headerslist. If you have more information, I'd be happy to assist.