How to get http request in url into my android app and display http response ?

Not applicable

I am having backend designed with EDGE. Now I need HTTP Request URL so, when user hit on my app icon that request sent and while app load get response with its value. Could you guide me where I get HTTP request & response

0 4 476
4 REPLIES 4

not sure if I follow your question, are you using cloud or on-prem?

So, you have APIs deployed in Edge and you need endpoints to access them? is that right?

You will find how you can access your API [the API endpoint] in the Overview tab of your API proxy. Can you pls elaborate on your question?

Not applicable

Thank you for quick response @mukundha@apigee.com

Yes. I have my all api deploy and now I don't know how to use it at end point? I do have oath security provided to protect my apis.

Please guide me.

Hi, are you using cloud or on-prem? If cloud you could access your API with the following pattern

http://{org}-{env}.apigee.net/{your resource path}

If your API is protected with Oauth, then basically you will have to create a oauth client in your android app. There are several oauth libs that can help you do that, or you could build the oauth flow just using the APIs

This part of the tutorial describes how you could build a OAuth client

http://apigee.com/docs/api-services/tutorials/part-3-test-oauth-20-policies

Thanks,

Not applicable

Thank you @mukundha@apigee.com 🙂