The issue is that I can't seem to get any data it sends to work.
{"Item1":"item1","Item2":"1"} //This is the json I am sending
Your pantry is called TestPantry
Your pantry is 1% full.
You have 1 baskets.
Your Baskets:
test_basket
Deleting test_basket
test_basket was removed from your Pantry! //This works
Creating a basket called test_basket //This works, but the basket is left empty but should have the json above
Your Pantry was updated with basket: test_basket! //This is direct output from your API
Updating a value in that basket //I changed a value, re-encoded it as JSON, and wrote it to the API
{} //Response from API
Reading back the Basket //Reading it back
{} //Still nothing
https://github.com/Krutonium/libPantryDotNet
The issue is that I can't seem to get any data it sends to work.
My programs output is as follows (With commentary from me)
I cannot figure out why it's not getting the JSON. Any thoughts?
This is the code that's running to generate that output and this is the code that's doing the actual requests