From e2dab9420d2038ea5c990c58f995be7e0d9037b9 Mon Sep 17 00:00:00 2001 From: RKrom Date: Wed, 9 Apr 2014 23:05:06 +0200 Subject: [PATCH] Fixed #1627 the redirect URL for box.com access was causing problems --- GreenshotBoxPlugin/BoxUtils.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GreenshotBoxPlugin/BoxUtils.cs b/GreenshotBoxPlugin/BoxUtils.cs index 55e6e0be1..4da805c40 100644 --- a/GreenshotBoxPlugin/BoxUtils.cs +++ b/GreenshotBoxPlugin/BoxUtils.cs @@ -37,7 +37,7 @@ namespace GreenshotBoxPlugin { public static class BoxUtils { private static readonly log4net.ILog LOG = log4net.LogManager.GetLogger(typeof(BoxUtils)); private static readonly BoxConfiguration Config = IniConfig.GetIniSection(); - private const string RedirectUri = "https://app.box.com/home/"; + private const string RedirectUri = "https://www.box.com/home/"; private const string UploadFileUri = "https://upload.box.com/api/2.0/files/content"; private const string AuthorizeUri = "https://www.box.com/api/oauth2/authorize"; private const string TokenUri = "https://www.box.com/api/oauth2/token";