Browse Source

1

trusteeshipTask
506583276@qq.com 2 years ago
parent
commit
94a2cb092b
  1. 8
      SBF.Business/ExecuteTrusteeshipPolicyBusiness.cs

8
SBF.Business/ExecuteTrusteeshipPolicyBusiness.cs

@ -196,7 +196,7 @@ namespace SBF.Business
AdgroupIds = adgroupIds AdgroupIds = adgroupIds
}); });
content = new StringContent(postData); content = new StringContent(postData);
res = await client.PostAsync("https://cactus.jd.com/request_algo?g_ty=ajax", content); res = await client.PostAsync(url, content);
if (res.IsSuccessStatusCode) if (res.IsSuccessStatusCode)
{ {
//发送成功 //发送成功
@ -301,7 +301,7 @@ namespace SBF.Business
HttpContent content = new StringContent(postData); HttpContent content = new StringContent(postData);
var res = await client.PostAsync("https://cactus.jd.com/request_algo?g_ty=ajax", content); var res = await client.PostAsync(url, content);
if (res.IsSuccessStatusCode) if (res.IsSuccessStatusCode)
{ {
//发送成功 //发送成功
@ -439,7 +439,7 @@ namespace SBF.Business
HttpContent content = new StringContent(postData); HttpContent content = new StringContent(postData);
var res = await client.PostAsync("https://cactus.jd.com/request_algo?g_ty=ajax", content); var res = await client.PostAsync(url, content);
if (res.IsSuccessStatusCode) if (res.IsSuccessStatusCode)
{ {
//发送成功 //发送成功
@ -553,7 +553,7 @@ namespace SBF.Business
HttpContent content = new StringContent(postData); HttpContent content = new StringContent(postData);
var res = await client.PostAsync("https://cactus.jd.com/request_algo?g_ty=ajax", content); var res = await client.PostAsync(url, content);
if (res.IsSuccessStatusCode) if (res.IsSuccessStatusCode)
{ {
//发送成功 //发送成功

Loading…
Cancel
Save