コード例 #1
0
 private void SetBaseUrl(AllegroEnviromentType enviromentType)
 {
     if (enviromentType.Equals(AllegroEnviromentType.Production))
     {
         BaseUrl = "https://api.allegro.pl/";
     }
     else
     {
         BaseUrl = "https://api.allegro.pl.allegrosandbox.pl/";
     }
 }
コード例 #2
0
 public AllegroClientSettings(AllegroEnviromentType enviromentType)
 {
     SetBaseUrl(enviromentType);
 }