# Release Note

## 0.10.4

* SSO(Ouath2) token 인터페이스 추가

```csharp
TrackerManager.GetInstance().SetSSOAccessToken("token");
```

* GPS 사용 최적화

## 0.10.0

* Navigation과 POI를 얻기 위한 placeId와 spotId 부분이 추가 되었습니다.
  * placeId와 spotId를 통해서 해당 API를 호출하기 위한 데이터를 확보합니다.

{% code title="MaxstSceneManager.cs" %}

```csharp
int placeId = trackable.placeId;
int spotId = trackable.spotId;
TrackerManager.GetInstance().SetPlaceIdAndSpotId(placeId, spotId);
```

{% endcode %}

* WebGL을 위한 Token API가 추가 되었습니다.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.maxverse.io/release-note.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
