I have set up an API that almost works perfectly. I POST a video to the server and GET a text file from it. Locally it works great, but now that I have this set up on PythonAnywhere, only the POST works. The user side is supposed to have a HTTPResponseMessage with a text file in it that they receive, but there is no response. Do I need to change my code in order to receive a response from PythonAnywhere? I'm sorry if this is a dumb question, I am a newbie and don't know where to look.
Code below is in C#. "MYSITE" is just a placeholder for me to post here
var response = await client.PostAsync("http://MYSITE.pythonanywhere.com", multipartFormContent);
var animation_data = await response.Content.ReadAsStringAsync();
[edit by admin: formatting]