钉钉对接接口

launchSettings.json 991B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "iisSettings": {
  3. "windowsAuthentication": false,
  4. "anonymousAuthentication": true,
  5. "iisExpress": {
  6. "applicationUrl": "http://localhost:58409/",
  7. "sslPort": 0
  8. }
  9. },
  10. "profiles": {
  11. "IIS Express": {
  12. "commandName": "IISExpress",
  13. "launchBrowser": true,
  14. //"launchUrl": "api/info",
  15. "launchUrl": "swagger",
  16. "environmentVariables": {
  17. "ASPNETCORE_ENVIRONMENT": "Development"
  18. }
  19. },
  20. "DingDingDemo(Dev)": {
  21. "commandName": "Project",
  22. "launchBrowser": false,
  23. "launchUrl": "api/info",
  24. "environmentVariables": {
  25. "ASPNETCORE_ENVIRONMENT": "Development"
  26. },
  27. "applicationUrl": "http://localhost:58410/"
  28. },
  29. "DingDingDemo(Prod)": {
  30. "commandName": "Project",
  31. "launchBrowser": false,
  32. "launchUrl": "api/info",
  33. "environmentVariables": {
  34. "ASPNETCORE_ENVIRONMENT": "Production"
  35. },
  36. "applicationUrl": "http://localhost:58410/"
  37. }
  38. }
  39. }