|
|
@ -27,13 +27,23 @@ namespace TaskManager.Controllers |
|
|
|
[AllowAnonymous] |
|
|
|
public class RecurringJobBaseController :ControllerBase, IDoExecute, IScoped |
|
|
|
{ |
|
|
|
protected string appKey = "8EG72d84c872668401"; |
|
|
|
protected string appSecret = "d092b9df0d504726a3790d7ad6172cc3"; |
|
|
|
|
|
|
|
|
|
|
|
#if DEBUG
|
|
|
|
protected string appKey = "8EG566b9bedd2bf46d"; |
|
|
|
protected string appSecret = "48edc4425647425d87f806a1ba492580"; |
|
|
|
#else
|
|
|
|
|
|
|
|
protected string appKey = "8EG72d84c872668401"; |
|
|
|
protected string appSecret = "d092b9df0d504726a3790d7ad6172cc3"; |
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//protected string appKey = "8EG566b9bedd2bf46d";
|
|
|
|
//protected string appSecret = "48edc4425647425d87f806a1ba492580";
|
|
|
|
protected readonly HttpClient _httpClient; |
|
|
|
protected readonly JobDbContext _jobDbContext; |
|
|
|
protected string Client { set; get; } = "Chery"; |
|
|
|