# Network check

When there is a problem with user's network, you can know the exact information at that time to better locate the problem.

We provide you with two ways to detect user's network, which is ping and traceroute.

# API

# setNetworkCheckHostAddress()

After the story line configuration is completed in the AIHelp dashboard, call this method to start network check when a storyline is triggered.

Your can also get the network check results through the callback, to carry out the next step of processing.

AIHelpSupport.setNetworkCheckHostAddress("aihelp.net", new OnNetworkCheckResultCallback() {
    @Override
    public void onNetworkCheckResult(String netLog) {
        // 
    }
});

# Definition

# hostAddress

  • Type: String
  • Details: Required. Specify the domain name of network detection, preferably the domain name or IP address where the user server is located, so as to detect the quality of network connection of users to the application.

# onNetworkCheckResultCallback

  • Type: OnNetworkCheckResultCallback
  • Details: Optional. Callback of network detection results, AIHelp will return the network check results to the caller through the interface.

# Code Example

Then, the code example is as follows:

AIHelpSupport.setNetworkCheckHostAddress("aihelp.net", new OnNetworkCheckResultCallback() {
    @Override
    public void onNetworkCheckResult(String netLog) {
        // 
    }
});

# Others

This function has switch and label configuration in the dashboard of AIHelp.

Please make sure that the relevant configuration in the dashboard is ready before your integrating.

Last Updated: 7/31/2023, 6:40:25 AM