We had a simple C# method to read an Object from a file and scale it. If I hardcode the scale factor, compute fetches the object correctly. But if I pass a param called ‘ObjectSize’ and use it in the API, I get an error - ‘Could not fetch data from RhinoCompute’
Solved: Initially our method did not take any input params, so we changed it to take a double parameter. But in the list of endpoints on RhinoCompute server, the input param double was not showing.
We tried adding the same method with a different name. Then the endpoint double parameter was displayed correctly.
Apparently it needed a new method to refresh.