JSON Post from a Webhook is null when type is string

I am using .NET 5 web api. I have a webhook that posts to my api. However, When I receive the POST in a string it is null. If I create a class, then .Net will parse the JSON for me, but I need a string, not an object. Any advice is greatly appreciated! Example… Read More JSON Post from a Webhook is null when type is string

React get value from State

Complete beginner to React. I have a backend API that I am trying to send requests to using Axios. I have a box with numbers like so: const [input, setInput] = useState(0); const [input2, setInput2] = useState(0); <div> <label htmlFor="num1">Number 1: </label> <input type="string" id="num1" name="num1" value={input} onInput={e => setInput(e.target.value)}/> </div> <br/> <div> <label htmlFor="num2">Number… Read More React get value from State