I'm trying to do a simple post request with Ruby and net/http but it keeps throwing the same error, here's my code: require 'uri'require 'net/http'data = { fields: { "Video Title" : "Top 10 funniest videos of 2022" }}uri = URI(https.....)headers...
Thank you, I changed to JSON and still getting a different error: {"error":{"type":"INVALID_REQUEST_UNKNOWN","message":"Invalid request: parameter validation failed. Check your request data."}}But in the end, I've fixed it by downloading HTTParty whi...