Introduction
How does Nickname Verification Work..?
Certainly! Our nickname verification system is a service designed to ensure the accuracy of user IDs and server IDs. By verifying this information, we minimize the chances of invalid orders due to incorrect IDs, thereby building trust with our customers and potentially increasing order volumes on our site. With a guaranteed uptime of 100% and round-the-clock availability, our system employs SSL encryption and authorization to reduce server load, ensuring seamless operation of our 24/7 online API server.
Steps
- Create an API request in jQuery AJAX for the nickname verification API endpoint with the necessary parameters using the "GET" request type.
- Once the GET API request is sent, our server will authenticate the AJAX request securely to ensure it is from an authorized domain before proceeding to the next steps.
- Subsequently, our server will establish a connection to the game server to validate the user ID.
- The validation data (success or error) will then be passed back to the host website.
- The host website will display the nickname to the customer.
- All of these processes will be executed internally.
Create a Nickname Api Request
Api URL : https://axcapi.com/trial/v2/emonaxc.php
Required Parameter : authorize, game, uid, sid
Content Type = "application/json";
Api request method jQuery AJAX Get Request. nickname response key name_emonaxc
Example Request
Example Code for perform a nickname verification Api request
//execute jQuery script nessasery
var url = "https://axcapi.com/trial/v2/emonaxc.php";
var parameters = {
authorize: "your_authorization_value",
game: "your_game_value",
uid: "your_uid_value",
sid: "your_sid_value"
};
$.ajax({
url: url,
type: "GET",
data: parameters,
success: function(response) {
// Handle successful response
console.log(response);
},
error: function(xhr, status, error) {
// Handle error
console.error(status, error);
}
});