Skip to content

Commit a1fa760

Browse files
Ivan KamkinIvan Kamkin
authored andcommitted
Fix urls check
1 parent 3b956ae commit a1fa760

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

scripts/check-urls.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ class Curl:
3434
"http://schemas.android.com/apk/res/android": (Curl.COULDNT_RESOLVE_HOST, None),
3535
"http://schemas.android.com/tools": (Curl.COULDNT_RESOLVE_HOST, None),
3636
"https://api.aspose.cloud/connect/token": (Curl.HTTP_RETURNED_ERROR, 400),
37-
"https://api.aspose.cloud/v3.0": (Curl.HTTP_RETURNED_ERROR, 403),
37+
"https://api.aspose.cloud/v3.0": (Curl.HTTP_RETURNED_ERROR, 404),
38+
"https://id.aspose.cloud/connect/token": (Curl.HTTP_RETURNED_ERROR, 400),
39+
"https://api.aspose.cloud/v4.0": (Curl.HTTP_RETURNED_ERROR, 404),
3840
"https://barcode.qa.aspose.cloud/v3.0/barcode/swagger/spec": (Curl.COULDNT_RESOLVE_HOST, None),
3941
"https://mvnrepository.com/artifact/io.swagger/swagger-codegen-cli": (Curl.HTTP_RETURNED_ERROR, 403),
4042
"https://www.npmjs.com/package/aspose-barcode-cloud-node": (Curl.HTTP_RETURNED_ERROR, 429),

0 commit comments

Comments
 (0)