I am following along with a pluralsight tutorial on asp.net web.api. http://www.pluralsight.com/courses/one-aspdotnet-from-scratch
The instructor used fiddler to test the web.api outside of the browser using the compose window. I always receive 401 on my get call. So... I hit up the google magic which yielded various possible solutions. I have tried
1. selecting automatically authenticate from the options in fiddler
2. adding this to my web.config
<system.web>
<authorization>
<allow users="?" />
</authorization>
</system.web>
3. adding the following key to my registry HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\MSV1_0\BackConnectionHostNames value of localhost.fiddler
None of these have worked.
What else can i try or what tool can i run to determine what is incorrect?