You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-11-06 08:49:29 +02:00
Правки формирования MD
This commit is contained in:
@@ -26,7 +26,7 @@ sidebar_position: 2
|
||||
Response = OPI_VK.CreateAd(1029683999, 166, 126, 221, 1607951446, Parameters);
|
||||
Response = OPI_Tools.JSONString(Response);
|
||||
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@ sidebar_position: 1
|
||||
Response = OPI_VK.CreateAdvertisingCampaign(1234567890, "New ads campaign", Parameters);
|
||||
Response = OPI_Tools.JSONString(Response);
|
||||
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ sidebar_position: 4
|
||||
Response = OPI_VK.GetAdvertisingCategoryList(Parameters);
|
||||
Response = OPI_Tools.JSONString(Response);
|
||||
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@ sidebar_position: 3
|
||||
Response = OPI_VK.PauseAdvertisingAd(1234567890, 1029701085, Parameters);
|
||||
Response = OPI_Tools.JSONString(Response);
|
||||
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ sidebar_position: 2
|
||||
Parameters = GetVKParameters();
|
||||
DiscussionID = "51206275";
|
||||
Result = OPI_VK.CloseDiscussion(DiscussionID, False, Parameters);
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@ sidebar_position: 1
|
||||
Message = "Red, yellow, blue, or some other?";
|
||||
|
||||
Result = OPI_VK.CreateDiscussion(Name, Message, Parameters);
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ sidebar_position: 3
|
||||
Parameters = GetVKParameters();
|
||||
DiscussionID = "51206275";
|
||||
Result = OPI_VK.OpenDiscussion(DiscussionID, Parameters);
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@ sidebar_position: 4
|
||||
Message = "I like yellow more";
|
||||
|
||||
Result = OPI_VK.WriteInDiscussion(DiscussionID, Message, Parameters);
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@ sidebar_position: 5
|
||||
Description = "NewAlbumFromAutoTest";
|
||||
|
||||
Result = OPI_VK.CreateAlbum(Name, Description, Parameters);
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -45,7 +45,7 @@ sidebar_position: 2
|
||||
AttachmentsArray.Add("video" + VideoOwner + "_" + VideoID);
|
||||
|
||||
Result = OPI_VK.CreateCompositePost(Text, AttachmentsArray, False, URL, Parameters);
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -29,7 +29,7 @@ sidebar_position: 4
|
||||
OptionArray.Add("Green");
|
||||
|
||||
Result = OPI_VK.CreatePoll(Question, OptionArray,, Parameters);
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -37,7 +37,7 @@ sidebar_position: 1
|
||||
|
||||
Result = OPI_VK.CreatePost(Text, ImageArray, True, URL, Parameters);
|
||||
Result = OPI_VK.CreatePost(Text, Image, False,, Parameters);
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ sidebar_position: 7
|
||||
|
||||
Parameters = GetVKParameters();
|
||||
URL = "https://github.com/Bayselonarrend/OpenIntegrations";
|
||||
|
||||
|
||||
Image = "https://openintegrations.dev/test_data/picture.jpg"; // URL, Path to file or Binary Data
|
||||
AndVF = GetTempFileName("png");
|
||||
CopyFile(Image, AndVF);
|
||||
@@ -29,7 +29,7 @@ sidebar_position: 7
|
||||
|
||||
Result = OPI_VK.CreateStory(Image, URL, Parameters);
|
||||
Result = OPI_VK.CreateStory(AndVF,, Parameters);
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ sidebar_position: 6
|
||||
AlbumID = "304549394";
|
||||
|
||||
Result = OPI_VK.DeleteAlbum(AlbumID, Parameters);
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ sidebar_position: 9
|
||||
ImageID = "457244340";
|
||||
|
||||
Result = OPI_VK.DeleteImage(ImageID, Parameters);
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ sidebar_position: 3
|
||||
PostID = "2304";
|
||||
|
||||
Result = OPI_VK.DeletePost(PostID, Parameters);
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -32,7 +32,7 @@ sidebar_position: 8
|
||||
|
||||
Result = OPI_VK.SaveImageToAlbum(AlbumID, Image, ImageDescription, Parameters);
|
||||
Result = OPI_VK.SaveImageToAlbum(AlbumID, AndVF, ImageDescription, Parameters);
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@ sidebar_position: 1
|
||||
Response = OPI_VK.LikePost(221,,Parameters);
|
||||
Response = OPI_Tools.JSONString(Response);
|
||||
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -25,7 +25,7 @@ sidebar_position: 2
|
||||
Response = OPI_VK.MakeRepost(2571, -218704372,,, Parameters);
|
||||
Response = OPI_Tools.JSONString(Response);
|
||||
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ sidebar_position: 5
|
||||
|
||||
Response = OPI_VK.ShortenLink("https://github.com/Bayselonarrend/OpenIntegrations", Parameters);
|
||||
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@ sidebar_position: 4
|
||||
Response = OPI_VK.WriteComment(221, -218861756, "Hello", Parameters);
|
||||
Response = OPI_Tools.JSONString(Response);
|
||||
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ sidebar_position: 3
|
||||
|
||||
Response = OPI_Tools.JSONString(Response);
|
||||
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -28,7 +28,7 @@ sidebar_position: 1
|
||||
|
||||
Response = OPI_Tools.JSONString(Response);
|
||||
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -44,7 +44,7 @@ sidebar_position: 4
|
||||
Response = OPI_VK.AddProduct(Product, SelectionID, Parameters);
|
||||
Response = OPI_Tools.JSONString(Response);
|
||||
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ sidebar_position: 6
|
||||
Response = OPI_VK.DeleteProduct(ProductID, Parameters);
|
||||
Response = OPI_Tools.JSONString(Response);
|
||||
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ sidebar_position: 5
|
||||
Response = OPI_VK.EditProduct(ProductID, Product,, Parameters);
|
||||
Response = OPI_Tools.JSONString(Response);
|
||||
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@ sidebar_position: 1
|
||||
|
||||
Response = OPI_VK.GetProductCategoryList(Parameters); //Map
|
||||
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ sidebar_position: 2
|
||||
Response = OPI_VK.GetProductList(, Parameters);
|
||||
Response = OPI_Tools.JSONString(Response);
|
||||
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@ sidebar_position: 3
|
||||
Response = OPI_VK.GetProductsByID(ProductsArray, Parameters);
|
||||
Response = OPI_Tools.JSONString(Response);
|
||||
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ sidebar_position: 7
|
||||
Response = OPI_VK.GroupProducts(ProductsArray,, Parameters);
|
||||
Response = OPI_Tools.JSONString(Response);
|
||||
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@ sidebar_position: 5
|
||||
Response = OPI_VK.AddProductPropertyVariant("Red", 260, Parameters);
|
||||
Response = OPI_Tools.JSONString(Response);
|
||||
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ sidebar_position: 2
|
||||
Response = OPI_VK.CreateProductProperty("Color", Parameters);
|
||||
Response = OPI_Tools.JSONString(Response);
|
||||
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ sidebar_position: 7
|
||||
Response = OPI_VK.DeleteProductPropertyVariant(980 Parameters);
|
||||
Response = OPI_Tools.JSONString(Response);
|
||||
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ sidebar_position: 4
|
||||
Response = OPI_VK.DeleteProductProperty(260, Parameters);
|
||||
Response = OPI_Tools.JSONString(Response);
|
||||
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@ sidebar_position: 6
|
||||
Response = OPI_VK.EditProductPropertyVariant("Yellow", 260, 980 Parameters);
|
||||
Response = OPI_Tools.JSONString(Response);
|
||||
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@ sidebar_position: 3
|
||||
Response = OPI_VK.EditProductProperty("Color (change.)", Property, Parameters);
|
||||
Response = OPI_Tools.JSONString(Response);
|
||||
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ sidebar_position: 1
|
||||
Response = OPI_VK.GetPropertyList(Parameters);
|
||||
Response = OPI_Tools.JSONString(Response);
|
||||
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@ sidebar_position: 5
|
||||
Response = OPI_VK.AddProductToSelection(8656559, 40, Parameters);
|
||||
Response = OPI_Tools.JSONString(Response);
|
||||
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -30,7 +30,7 @@ sidebar_position: 3
|
||||
|
||||
Response = OPI_Tools.JSONString(Response);
|
||||
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ sidebar_position: 7
|
||||
Response = OPI_VK.DeleteSelection(40, Parameters);
|
||||
Response = OPI_Tools.JSONString(Response);
|
||||
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -32,7 +32,7 @@ sidebar_position: 4
|
||||
|
||||
Response = OPI_Tools.JSONString(Response);
|
||||
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ sidebar_position: 1
|
||||
Response = OPI_VK.GetSelectionList(Parameters);
|
||||
Response = OPI_Tools.JSONString(Response);
|
||||
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ sidebar_position: 2
|
||||
Response = OPI_VK.GetSelectionsByID(Selections, Parameters);
|
||||
Response = OPI_Tools.JSONString(Response);
|
||||
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@ sidebar_position: 6
|
||||
Response = OPI_VK.RemoveProductFromSelection(8656559, 40, Parameters);
|
||||
Response = OPI_Tools.JSONString(Response);
|
||||
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@ sidebar_position: 2
|
||||
Response = OPI_VK.GetPostStatistics(ArrayOfPosts, VK_Parameters);
|
||||
Response = OPI_Tools.JSONString(Response);
|
||||
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@ sidebar_position: 1
|
||||
Response = OPI_VK.GetStatistics(CurrentSessionDate() - 60 * 60 * 24, CurrentSessionDate(), Parameters);
|
||||
Response = OPI_Tools.JSONString(Response);
|
||||
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -19,7 +19,7 @@ Getting a link for interactive token retrieval (access_token), which is necessar
|
||||
|
||||
Application = "51694790";
|
||||
Result = OPI_VK.CreateTokenRetrievalLink(Application);
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user