Skip to content

Commit

Permalink
Placeholder urls for remote services (#38)
Browse files Browse the repository at this point in the history
* Placeholder url for login

* Change the "about" url
  • Loading branch information
andybak authored Aug 26, 2024
1 parent 544c8ee commit 495f983
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Assets/Scripts/desktop_app/DesktopMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public class DesktopMain : MonoBehaviour
/// <summary>
/// URL user is taken to when selecting 'About Blocks' from menu
/// </summary>
private const string ABOUT_BLOCKS_URL = "https://vr.google.com/blocks";
private const string ABOUT_BLOCKS_URL = "https://openblocks.app";

public void Setup()
{
Expand Down
2 changes: 1 addition & 1 deletion Assets/Scripts/entitlement/OAuth2Identity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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 " +
Expand Down

0 comments on commit 495f983

Please sign in to comment.