WebRequest in 5.2?

Hi all,

I was watching Boston Unite Roadmap talk on YouTube, I heard they mentioned there is a new API called WebRequest soon replacing WWW. And it is currently launched with 5.2. However, I cannot find any documentation regarding this API. If I Google it, there is a thread I found:

http://forum.unity3d.com/threads/new-webrequest-feedback-questions.339093/

I tried to open Unity 5.2.1p2 and typed “UnityWebRequest” or “WebRequest”, but found nothing. Is there a special namespace for this? Or is it currently still in development and it is not launched yet?

Hi @Gamrek ,

This is the API for UnityWebRequest: http://docs.unity3d.com/ScriptReference/Experimental.Networking.UnityWebRequest.html

Remember to write

using UnityEngine.Experimental.Networking;
1 Like

That is great! Thank you very much!