I'm about to embark down the path of writing a .NET app for retrieving and updating title Ratings in .NET. I was hoping to find a reference to the XML Schema that's used to format the data returned by the REST APIs, so I wouldn't have to hard-code every detail of the schema into my app.
I've been through most of the pages of the Developer documentation and I noticed one URL that seemed like a promising lead (http://schemas.netflix.com/catalog/programs) but it appears that the service "schemas.netflix.com" is not currently (no longer?) running.
Is there somewhere I can find a place to point Visual Studio to find the current XML Schema for the data returned by the Netflix APIs?
I'm about to embark down the path of writing a .NET app for retrieving and updating title Ratings in .NET. I was hoping to find a reference to the XML Schema that's used to format the data returned by the REST APIs, so I wouldn't have to hard-code every detail of the schema into my app.
I've been through most of the pages of the Developer documentation and I noticed one URL that seemed like a promising lead (http://schemas.netflix.com/catalog/programs) but it appears that the service "schemas.netflix.com" is not currently (no longer?) running.
Is there somewhere I can find a place to point Visual Studio to find the current XML Schema for the data returned by the Netflix APIs?
Thanks all!
Message edited by ParanoidMike 2 years ago
Tags
Quantum Concepts – 2 years ago
Unfortunately REST doesn't work like SOAP services. There is not generally a "WSDL" to describe the service/responses. You're on your own.
Still don't understand why REST exists.