Examine Searcher Umbraco Api returning invalid JSON
I'm trying to implement an example for adding examine results for a node as a content app. The network response however is invalid JSON. Is this a bug with umbraco 8 right now?
On my network tab this is calling:
"/umbraco/backoffice/UmbracoApi/ExamineManagement/GetSearcherDetails"
The response is:
)]}',
[]
This seems like a bug to me.
I'm also curious as to how content app creators are finding documentation about how to perform the api call in question. I haven't been able to find anything referencing what api calls exist or how to call them, but I can see other users examples.
So if that is the case what it's returning is an empty array of searchers. If I call "GetIndexerDetails" it returns all of my indexers. What am I missing to get the searchers to show up? Aren't those created from the indexers?
I would like to see some documentation on these methods.
Examine Searcher Umbraco Api returning invalid JSON
I'm trying to implement an example for adding examine results for a node as a content app. The network response however is invalid JSON. Is this a bug with umbraco 8 right now?
Here is what the content app controller is doing:
On my network tab this is calling: "/umbraco/backoffice/UmbracoApi/ExamineManagement/GetSearcherDetails"
The response is:
This seems like a bug to me.
I'm also curious as to how content app creators are finding documentation about how to perform the api call in question. I haven't been able to find anything referencing what api calls exist or how to call them, but I can see other users examples.
I was following this this project
Thanks!
It's a security feature: https://security.stackexchange.com/questions/110539/how-does-including-a-magic-prefix-to-a-json-response-work-to-prevent-xssi-attack
So if that is the case what it's returning is an empty array of searchers. If I call
"GetIndexerDetails"
it returns all of my indexers. What am I missing to get the searchers to show up? Aren't those created from the indexers?I would like to see some documentation on these methods.
is working on a reply...