abrudtkuhl/WordPressSharp

response contains integer value where string expected [response : array mapped to type Category[]

Closed this issue · 3 comments

When i try receive categories i get this error

 var client = new WordPressClient(new WordPressSiteConfig
            {
                BaseUrl = "http://exclusive-news.org/",
                Username = "ultras",
                Password = "kawasaki"

            });
            var cat = client.GetCategories().First();

@Radzhab what error?

GetCategories has been deprecated in the WP XML-RPC api. You'll want to use GetTerms()

FWIW I've removed this deprecated function from the library