Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by pnyx · Feb 11, 2020 at 05:40 PM · webrequestphp

How to get UnityWebRequest data early when using php flush()

Hi, I'm using UnityWebRequest.Post to communicate with my php server. I want to use flush() in PHP to send partial data to the game as soon as possible but the WebRequest is set to be done only after the whole thing finishes. Is there any way to check if a flush happened on the other end and get the data early? here is the code I'm using:

     IEnumerator DoPostRequest<RESULTTYPE>( string route, WWWForm formData, 
 UnityAction<RESULTTYPE> OnSuccess, UnityAction OnFailure )
     {
         using( var request = UnityWebRequest.Post( GamePrefs.SERVER + route, formData ) )
         {
             yield return request.SendWebRequest();
             
             if( request.isNetworkError || request.isHttpError )
             {
                 Debug.LogError( "POST_ERROR:" + route + " - " + request.error );
             }
             else
             {
                 if( request.responseCode == 200 )
                 {
                     RESULTTYPE result = default;
                     bool success = true;
                     try
                     {
                         result = JsonUtility.FromJson<RESULTTYPE>( request.downloadHandler.text );
                     }
                     catch( System.Exception e )
                     {
                         Debug.LogError( "Exception When parsing " + route + " as json :: " + e.ToString() + "\nResponse:" + request.downloadHandler.text );
                         success = false;
                     }
                     if( success )
                     {
                         OnSuccess( result );
                     }
 
                 }
                 else
                 {
                     Debug.LogWarning( "POST_ABORT:" + route + " " + request.downloadHandler.text );
                     OnFailure?.Invoke();
                 }
             }
         }
     }

the php part:

 if (ob_get_level() == 0) ob_start();

 echo GetJsonFromResult( $result, "games" );
 
 ob_flush();
 flush();
 
 sleep(2);
 echo "Post flush echo";


the php works fine when run in the browser, but I can't get unity to receive the data early. Thanks! :)

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by pnyx · Feb 11, 2020 at 06:03 PM

I found a temporary workaround. It feels very hacky but works for now. I'll be looking for a cleaner solution.

 request.SendWebRequest();
 while(  request.isDone == false )
 {
     yield return null;
 
     if ( request.downloadHandler != null && 
          string.IsNullOrEmpty( request.downloadHandler.text ) == false )
     {
         try
         {
             var result = JsonUtility.FromJson<RESULTTYPE>( request.downloadHandler.text );
             if ( result != null )
             {
                 request.Abort();
                 break;
             }
         }
         catch
         {
 
         }
     }
 }
 // do my stuff

 while( request.isDone == false )
 {
    yield return null;
 }



Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

118 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

How to post images to mysql using unity webrequest? 0 Answers

downloadHandler.text = "\u001f�\b" 1 Answer

UnityWebRequest Post Not Returning Anything 1 Answer

Get echo output from PHP script which is on an FTP server with C# 1 Answer

Download multiple files from server 2 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges