feat: ensure /api/v1 path is included in token URL for OAuth endpoint
This commit is contained in:
@@ -398,6 +398,11 @@ bool OverteAuth::refreshAccessToken() {
|
|||||||
|
|
||||||
std::string tokenUrl = m_metaverseUrl;
|
std::string tokenUrl = m_metaverseUrl;
|
||||||
if (tokenUrl.back() == '/') tokenUrl.pop_back();
|
if (tokenUrl.back() == '/') tokenUrl.pop_back();
|
||||||
|
|
||||||
|
// Overte uses /api/v1/oauth/token endpoint
|
||||||
|
if (tokenUrl.find("/api/v1") == std::string::npos) {
|
||||||
|
tokenUrl += "/api/v1";
|
||||||
|
}
|
||||||
tokenUrl += "/oauth/token";
|
tokenUrl += "/oauth/token";
|
||||||
|
|
||||||
std::ostringstream postData;
|
std::ostringstream postData;
|
||||||
|
|||||||
Reference in New Issue
Block a user