Re: how to expose app as API in Heroku?

2019-03-21 Thread Madeesha Fernando
Hi Devs, @Crawford, I am developing my application using JAVA and my backend service returns an order. @Manjula, Thanks for the pointers, I was actually looking for an APIM solution. I tried out the wso2 API cloud add-on and it worked :) You can invoke my backend using following curl command.

Re: how to expose app as API in Heroku?

2019-03-18 Thread Manjula Rathnayake
Hi Madeesha, If you are looking for a complete API management solution for your applications deployed on Heroku, I would recommend you to look at WSO2 API Cloud Add-On . Recently I came up with a post on medium

Re: how to expose app as API in Heroku?

2019-03-18 Thread crawford
What language/framework are you using? If it's a publicly accessible API you don't really need to do anything. Just make sure there aren't any authentication requirements and your route returns should be json instead of rendering any HTML. With flask, I recommend the flask.jsonify method. If