while using ani api calling methods, to send get or post requests, the browser has a network tab that allows us to view these.
I was wondering if unity has a built in tool to let us view the requests for apis that we make inside of unity and the responses that we get. Just like in the browser’s network tab.
I don’t think there is but man that sounds SUPER useful.
I suppose you could write your own class wrapper on the UnityWebRequest layer and track it yourself and show it in a window. It might even be worth searching the Unity Asset Store to see if such a thing already exists.
And setting up a proxy can be very helpful too, in order to compare traffic:
https://support.unity.com/hc/en-us/articles/115002917683-Using-Charles-Proxy-with-Unity
And here is my standard “whenever you are doing network” links:
Networking, UnityWebRequest, WWW, Postman, curl, WebAPI, etc:
https://discussions.unity.com/t/831681/2
https://discussions.unity.com/t/837672/2
2 Likes
thanks for the resources.
Really appreciate it.
1 Like