Issue
I have a Xamarin app and localhost API. I'm trying to connect to the API from the app, but it could not be found. I edited my applicationhost.config
file and I tried localhost
, 10.0.2.2
and my IP address in the call, but it was not working.
So, how do I configure simple API access? (The API itself is working well)
Solution
There is simple workaround to connect Emulator
& Simulator
to localhost
API.
Download third party software NgRok for Windows at any specific location of your PC. It just contains one executable file called ngrok.exe
(you not need to install it).
Now execute your service on your preferred browser. Than follow below steps.
- Open your
ngrok.exe
file path in command prompt
- Keep your service url (take from your browser) with prefix
ngrok http --host-header=rewrite
and hit enter.
- Now go to your browser where you have executed your service open new tab and type
localhost:4040
than press enter -->Go tostatus
there you will find your public url which you can use in your mobile application.
Note: Url structure should be like this public const string BaseUri = "https://8c56892f.ngrok.io/";
followed by /
in last. Try not to append unnecessary /
.
Benifits
You can debug services from one Visual Studio to another.
Your url will be active until you close command prompt.
In browser or command prompt track your requests status like
Ok
,Not found
etc.
For more information visit this https://www.c-sharpcorner.com/article/exposing-local-web-server-to-internet-using-ngrok/
Hope it help you.
Answered By - R15
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.