php - React native Axios or fetch when i called post method (get method working fine) post parameters are getting null data on server side

Solution:

The first thing you need to upsize the payload limit on server-side, still cause a problem then mention the details.

Answer

Solution:

Finally, I found the solution by upgrading the FLIPPER_VERSION to 0.41.0 this issue gets resolved but If I upgraded the app not even opening for me. So for now what I did is in the below file I just commented on these lines. worked for me.

\android\app\src\debug\java\com\appname\ReactNativeFlipper.java

public void apply(OkHttpClient.Builder builder) {
            //  builder.addNetworkInterceptor(new FlipperOkhttpInterceptor(networkFlipperPlugin));
            }

I just commented this line for more assistance you can check the below link

URL: https://github.com/facebook/react-native/issues/28551#issuecomment-656601532

If you wanna update flipper version it will be available at ..\android\gradle.properties

Source