there is no bidi channel but i figured you yada experts might know: is there a way possible to enumerate all paths, given a bidi route definition?
route-seq
Yes. bidi.bidi/route-seq
exactly what i need, thanks!
is there a way of making yada accept "application/json; charset=utf-8"?
I know it is a problem on the client, but the workaround for React Native on Android especially with expo.js is kind of involved
@stijn if your goal is to make a call like curl -X GET --header 'Accept: application/json; charset=utf-8' '<http://localhost:3000/somecall>'
work, and you are able to currently have one like curl -X GET --header 'Accept: application/json' '<http://localhost:3000/somecall>'
work successfully, you can just add "application/json; charset=utf-8"
to the :produces
set of your resource
there might be a better way to do it...but that definitely works for me, at least
(and still has the result return JSON, encoded in utf-8)