-
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
OZON: Загрузка и проверка изображений товаров
- Loading branch information
1 parent
d329138
commit 80b73ce
Showing
20 changed files
with
3,921 additions
and
3,128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"ClientID": "2128753", | ||
"APIKey": "7cc90d26-33e4-499b...", | ||
"ProductID": 1111588191 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"ClientID": "2128753", | ||
"APIKey": "7cc90d26-33e4-499b...", | ||
"ProductID": 1111588191, | ||
"Image1": "https://openintegrations.dev/test_data/picture.jpg", | ||
"Image2": "https://openintegrations.dev/test_data/picture2.jpg" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
ClientID = "2128753"; | ||
APIKey = "7cc90d26-33e4-499b..."; | ||
ProductID = "1111588191"; | ||
|
||
Result = OPI_Ozon.CheckProductsImagesUpload(ClientID, APIKey, ProductID); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
ClientID = "2128753"; | ||
APIKey = "7cc90d26-33e4-499b..."; | ||
ProductID = "1111588191"; | ||
|
||
Image1 = "https://openintegrations.dev/test_data/picture.jpg"; | ||
Image2 = "https://openintegrations.dev/test_data/picture2.jpg"; | ||
|
||
MarketingColor = "GREEN"; | ||
|
||
ImagesArray = New Array; | ||
ImagesArray.Add(Image1); | ||
ImagesArray.Add(Image2); | ||
|
||
Result = OPI_Ozon.UpdateProductImages(ClientID | ||
, APIKey | ||
, ProductID | ||
, ImagesArray | ||
, | ||
, MarketingColor); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"IDКлиента": "2128753", | ||
"КлючAPI": "7cc90d26-33e4-499b...", | ||
"IDТовара": 1111588191, | ||
"Картинка1": "https://openintegrations.dev/test_data/picture.jpg", | ||
"Картинка2": "https://openintegrations.dev/test_data/picture2.jpg" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"IDКлиента": "2128753", | ||
"КлючAPI": "7cc90d26-33e4-499b...", | ||
"IDТовара": 1111588191 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
IDКлиента = "2128753"; | ||
КлючAPI = "7cc90d26-33e4-499b..."; | ||
IDТовара = "1111588191"; | ||
|
||
Картинка1 = "https://openintegrations.dev/test_data/picture.jpg"; | ||
Картинка2 = "https://openintegrations.dev/test_data/picture2.jpg"; | ||
|
||
МаркетинговыйЦвет = "GREEN"; | ||
|
||
МассивИзображений = Новый Массив; | ||
МассивИзображений.Добавить(Картинка1); | ||
МассивИзображений.Добавить(Картинка2); | ||
|
||
Результат = OPI_Ozon.ОбновитьИзображенияТовара(IDКлиента | ||
, КлючAPI | ||
, IDТовара | ||
, МассивИзображений | ||
, | ||
, МаркетинговыйЦвет); |
5 changes: 5 additions & 0 deletions
5
docs/ru/examples/Ozon/ПроверитьЗагрузкуИзображенийТоваров.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
IDКлиента = "2128753"; | ||
КлючAPI = "7cc90d26-33e4-499b..."; | ||
IDТовара = "1111588191"; | ||
|
||
Результат = OPI_Ozon.ПроверитьЗагрузкуИзображенийТоваров(IDКлиента, КлючAPI, IDТовара); |
Oops, something went wrong.