Created
February 26, 2021 10:29
-
-
Save progapandist/05f354b3c93c116bf376361fe76caf0a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'sinatra' | |
post '/*' do | |
puts JSON.pretty_generate(request.env) | |
puts request.body.read | |
end | |
put '/*' do | |
puts JSON.pretty_generate(request.env) | |
puts request.body.read | |
end | |
get '/*' do | |
env = JSON.pretty_generate(request.env) | |
body = request.body.read | |
puts env # log | |
puts body | |
env + "\n" + body | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment