0
部署我使用的是使用的Process.Start一個項目之後不重定向()重定向到網絡生活的OAuth請求令牌 它停止本地IIS服務器上部署該網站後工作,它不會做任何重定向 這裏是我的代碼的Process.Start()在IIS
authorizeUri.AppendFormat("?client_id={0}&", appId);
authorizeUri.AppendFormat("scope={0}&", "wl.signin");
authorizeUri.AppendFormat("response_type={0}&", "token");
authorizeUri.AppendFormat("redirect_uri={0}", HttpUtility.UrlEncode("http://scarnetdomain.com/Default3.aspx/"));
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = authorizeUri.ToString();
Process.Start(startInfo);