public ActionResult AuthenticateToScoopIt()
        {
            var redirectTo = OauthAuthorizeService.AuthenticateToScoopIt();

            if (!string.IsNullOrEmpty(redirectTo.Callback))
            {
                Response.Redirect(redirectTo.Callback);
                return(null);
            }
            else
            {
                return(Content("Error"));
            }
        }