|
@@ -23,9 +23,12 @@ namespace MySystem
|
|
|
foreach (var keyValue in stringArgs)
|
|
|
{
|
|
|
string path = context.ActionDescriptor.AttributeRouteInfo.Template.ToLower();
|
|
|
+ function.WriteLog(path, "拦截器日志");
|
|
|
if(keyValue.Key == "value" && AllowApiList().Contains(path))
|
|
|
{
|
|
|
+ function.WriteLog(keyValue.Value.ToString(), "拦截器日志");
|
|
|
string result = function.PostWebRequest(AppConfig.Base.Host2 + path, "value=" + keyValue.Value.ToString());
|
|
|
+ function.WriteLog(result, "拦截器日志");
|
|
|
result = result.Replace("null", "\"\"");
|
|
|
result = result.Replace("\"status\"", "\"Status\"");
|
|
|
result = result.Replace("\"data\"", "\"Data\"");
|
|
@@ -43,7 +46,9 @@ namespace MySystem
|
|
|
{
|
|
|
List<string> result = new List<string>();
|
|
|
result.Add("api/v1/merchantaddinfo/add");
|
|
|
+ result.Add("api/v1/merchantaddinfo/options");
|
|
|
result.Add("api/v1/merchantaddinfo/businessscope");
|
|
|
+ result.Add("api/v1/consumerorders/pay");
|
|
|
return result;
|
|
|
}
|
|
|
}
|