ドキュメント

サポート

Vivox Core SDK

Vivox Core SDK

Sign out of a game

How to sign out a player from Vivox services.
読み終わるまでの所要時間 1 分最終更新 23日前

When the game no longer wants the user signed in, it sends a
vx_req_account_logout
message to the Vivox SDK. After the user is signed out, no network traffic is sent to or is received by the Vivox SDK.
The following code is an example of the sign out process:
. . .vx_req_account_logout *req;vx_req_account_logout_create(&req);req->account_handle= vx_strdup(".issuer-w-dev.mytestaccountname.");vx_issue_request3(&req->base, &request_count);. . .