1. Integration Service
<Quantum> Milf Master
  • API
  • General Information
    • Change Log
    • Server Structure
  • Integration Service
    • 1. Version History
    • 2. Introduction
    • 3. Launching MilfMasters Game Client
    • 4. Wallet API
    • Verify Session
      POST
    • Get Balance
      POST
    • Withdraw
      POST
    • Confirm Withdraw
      POST
    • Rollback Withdraw
      POST
  • Entry Point
    • Entry Sequence
    • Entry Point
  • Payment
    • Payment Sequence
    • Payment Initiation
    • Payment Callback
    • Payment Callback API
      POST
    • Query Withdrawal
      POST
  • Data Types
    • Data Types
  • Schemas
    • Error Response Body
    • Balance Amount
  1. Integration Service

Verify Session

Developing
开发环境
https://mmaster.casual-tnl01.quantum-web-platform.com
开发环境
https://mmaster.casual-tnl01.quantum-web-platform.com
POST
/wallet/verifySession
When MilfMasters Game Client starts, it will have a sessionId as URL parameter, that must be validated, before starting. To validate, the MilfMasters Backend must send a verifySession request.

Request

Body Params application/json

Example
{
    "sessionId": "a95b9277-af3d-4cd0-ac59-5580b878580c",
    "referrer": "https://waifusoft.com"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://mmaster.casual-tnl01.quantum-web-platform.com/wallet/verifySession' \
--header 'Content-Type: application/json' \
--data '{
    "sessionId": "a95b9277-af3d-4cd0-ac59-5580b878580c",
    "referrer": "https://waifusoft.com"
}'

Responses

🟢200OK
application/json
Bodyapplication/json

Example
{
    "token": "9158d05a-db8d-4a02-a338-236d701bf3aa",
    "userId": 23812,
    "nickname": "Montombe",
    "localeCode": "en-US",
    "balance": {
        "amount": 52000.8,
        "currencyCode": "XAG"
    }
}
🔴500服务器错误
Modified at 2023-08-24 13:35:32
Previous
4. Wallet API
Next
Get Balance
Built with