我正在将OAuth2实现到我的MVC项目中。 目前我正在使用Google Api。第一步工作正常,我的回调URL使用参数代码调用,如下所示:
code=4/O89-dMqK-MHn8ynzsEawrpYPL80Y.Mu61gsIzfDMYOl05ti8ZT3adNQ17fgI
问题是MVC忽略了它,因为值中的句点(。)。我需要知道我能做些什么才能让它发挥作用。 如果我删除了这段时间,那么一切正常,但我无法控制google发回给我的内容,但我需要能够阅读它。
我尝试添加一个如下所示的自定义路线:
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.IgnoreRoute("{*robotstxt}", new { robotstxt = @"(.*/)?robots.txt(/.*)?" });
// default MVC route
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
).RouteHandler = new CmsRouteHandler();
// OAuth route
routes.MapRoute(
name: "OAuth",
url: "OAuth/OAuth2Callback*"
);
// CatchAll route
routes.MapRoute(
"Catchall", // Route name
"{*url}"
).RouteHandler = new CmsRouteHandler();
}
但它似乎不起作用:(
干杯, / r3plica
答案 0 :(得分:0)
如果您使用的是.NET 4.0,请将其添加到web.config文件的system.web
部分
<httpRuntime relaxedUrlToFileSystemMapping="true" />
它应该解决问题
答案 1 :(得分:0)
这个设置可能应该解决它:
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>