First, to clarify that, my C# API is working properly. I am able to retrieve the json data from my javascript.
But, I am curious, whenever I access my API directly through the browser, it shows this:
However, when I access JSON hosted by others (such as myjson), they are able to display the json directly from the browser:
Here's my code briefly,
public Object Get()
{
...// form object from my data
return myObject;
}
Is there any configuration needed?