기술 자료

​
​

Development

User Acquisition

Monetization

산업 분야

Vivox Unreal SDK

Vivox Unreal SDK

이 페이지는 선택한 언어로 제공되지 않습니다.
Vivox
​
​
Vivox Unreal SDK
  • Overview
  • Get started
  • Release notes
  • Developer guide
  • Tutorials
  • Reference
  1. Vivox Unreal SDK documentation

Set chat markers

Learn how to set read status markers in chat.
읽는 시간 1분
최근 업데이트: 8달 전

The set Chat Markers API gives you control over the creation of Chat Markers. You can use Chat Markers to mark messages as read. It also provides data for the Conversation list API. This functionality works in both channels and DMs.
To set a conversation's read marker, sign in to the application and use vx_req_account_chat_history_set_marker to make a request. This request returns whether the marker was created or not.
참고
The marker is created even if the URI or message doesn’t exist.
The following code is an example of how to set a conversation marker.
vx_req_account_chat_history_set_marker *req;vx_req_account_chat_history_set_marker_create(&req);req->with_uri = vx_strdup(”sip:confctl-g-issuer.room_name.@domain”); // Optional parameter, if not set it will use the channel you’ve joined most recentlyreq->message_id = vx_strdup(“1234567890”); // The message id you’re setting the marker forreq->seen_at = 1234567890; // Optional, unix timestamp which defaults to the current time if not setvx_issue_request2(&req->base);
After you retrieve this information, the game must process the vx_resp_account_chat_history_set_marker_t response:
void HandleAccountChatHistorySetMarkerResponse(vx_resp_account_chat_history_set_marker_t *resp){ // Handles the response, nothing to really be done here unless the request fails}

Copyright © 2026 Unity Technologies
법률 정보개인정보 처리방침쿠키Documentation Terms of Use개인 정보 판매 또는 공유 금지개인정보 보호 선택(쿠키 설정)

'Unity', Unity 로고 및 기타 Unity 상표는 미국 및 기타 지역 내 Unity Technologies 또는 그 계열사의 상표 또는 등록상표입니다(자세한 내용은 여기에서 확인하세요). 기타 명칭 또는 브랜드는 해당 소유자의 상표입니다.

일부 페이지는 편의를 위해 기계 번역되었으며 부정확한 내용이 있을 수 있습니다. 정보가 상충되는 경우, 영어 버전을 우선으로 참조하세요.


    이 페이지의 문제 보고