From 495f9835dfe4670df6d23b3458088cec512e8776 Mon Sep 17 00:00:00 2001 From: Andy Baker Date: Mon, 26 Aug 2024 18:25:16 +0100 Subject: [PATCH] Placeholder urls for remote services (#38) * Placeholder url for login * Change the "about" url --- Assets/Scripts/desktop_app/DesktopMain.cs | 2 +- Assets/Scripts/entitlement/OAuth2Identity.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Assets/Scripts/desktop_app/DesktopMain.cs b/Assets/Scripts/desktop_app/DesktopMain.cs index 40e29f97..88930b92 100644 --- a/Assets/Scripts/desktop_app/DesktopMain.cs +++ b/Assets/Scripts/desktop_app/DesktopMain.cs @@ -81,7 +81,7 @@ public class DesktopMain : MonoBehaviour /// /// URL user is taken to when selecting 'About Blocks' from menu /// - private const string ABOUT_BLOCKS_URL = "https://vr.google.com/blocks"; + private const string ABOUT_BLOCKS_URL = "https://openblocks.app"; public void Setup() { diff --git a/Assets/Scripts/entitlement/OAuth2Identity.cs b/Assets/Scripts/entitlement/OAuth2Identity.cs index a925b5e4..c4ee6789 100644 --- a/Assets/Scripts/entitlement/OAuth2Identity.cs +++ b/Assets/Scripts/entitlement/OAuth2Identity.cs @@ -46,7 +46,7 @@ public class UserInfo private const string m_ServiceName = "Google"; private const string m_ClientId = "TODO"; private const string m_ClientSecret = "TODO"; - private const string m_RequestTokenUri = "https://accounts.google.com/o/oauth2/auth"; + private const string m_RequestTokenUri = "https://docs.openblocks.app/saving-and-sharing-on-the-web"; private const string m_AccessTokenUri = "https://accounts.google.com/o/oauth2/token"; private const string m_UserInfoUri = "[Removed]"; private const string m_OAuthScope = "profile email " +