I am VERY new to using web services and was finally starting to make progress until I got stuck again.
I am working in Android and using Retrofit connecting to MS SQL Server:
This works
http:/MYSERVERIP:85/rest/MYAPP?app_name=api-key
This does not:
http://MYSERVERIP:85/rest/MYAPP?names_only=true&include_schemas=true?app_name=api-key
Error in Android LOG CAT:
D/Retrofit﹕ java.io.IOException: No authentication challenges found
if I put it in a browser I get this:
{“error”:[{“context”:null,“message”:“No application name header or parameter value in request.”,“code”:400}]}
It runs fine and lists all the tables in the API Docs section of the admin console. Any help is appreciated.