Skip to content

Commit 2f951a5

Browse files
committed
Adjust the sdk in apiv4 to replace the text description at apikey
1 parent 1851ab9 commit 2f951a5

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public class Test
5858
{
5959
try
6060
{
61-
string apiKey = "you api key";
61+
string apiKey = "your api key";
6262
TrackingMore trackingMore = new TrackingMore(apiKey);
6363

6464
var apiResponse = trackingMore.Courier.GetAllCouriers();
@@ -118,7 +118,7 @@ catch (TrackingMoreException ex)
118118
```c#
119119
try
120120
{
121-
string apiKey = "you api key";
121+
string apiKey = "your api key";
122122
TrackingMore trackingMore = new TrackingMore(apiKey);
123123

124124
DetectParams detectParams = new DetectParams();

Test/UnitTest/AirWaybillTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public class AirWaybillTest
99
public TrackingMore trackingMore;
1010

1111
public AirWaybillTest(){
12-
string apiKey = "you api key";
12+
string apiKey = "your api key";
1313
this.trackingMore = new TrackingMore(apiKey);
1414
}
1515

Test/UnitTest/CourierTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public class CourierTest
99
public TrackingMore trackingMore;
1010

1111
public CourierTest(){
12-
string apiKey = "you api key";
12+
string apiKey = "your api key";
1313
this.trackingMore = new TrackingMore(apiKey);
1414
}
1515

Test/UnitTest/TrackingTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public class TrackingTest
99
public TrackingMore trackingMore;
1010

1111
public TrackingTest(){
12-
string apiKey = "you api key";
12+
string apiKey = "your api key";
1313
this.trackingMore = new TrackingMore(apiKey);
1414
}
1515

TrackingMoreAPI/src/Test.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ static void Main(string[] args)
1212
{
1313
try
1414
{
15-
string apiKey = "you api key";
15+
string apiKey = "your api key";
1616
TrackingMore trackingMore = new TrackingMore(apiKey);
1717

1818
var apiResponse = trackingMore.Courier.GetAllCouriers();

0 commit comments

Comments
 (0)