1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-01-24 05:36:29 +02:00
2024-08-14 09:06:31 +03:00

1.4 KiB

sidebar_position
3

Send file

Sends a file (document) to a chat or channel

Function SendFile(Val Token, Val URL, Val UserID, Val SendingToChannel, Val Extension, Val Size = "") Export

Parameter CLI option Type Description
Token --token String Token
URL --file String File URL
UserID --user String, Number User ID. For channel > administrator, for bot > recipient
SendingToChannel --ischannel Boolean Sending to channel or bot chat
Extension --ext String File extension
Size --size Number File size. If not filled in > determined automatically by downloading the file

Returns: Map Of KeyAndValue - serialized JSON response from Viber


  
  ChannelToken = "523b58ba82afffaa-111111111111111-2222222222222222";
  UserID = "tMNGh111111111D+bT4g==";
  
  Response = OPI_Viber.SendFile(ChannelToken, "https://api.athenaeum.digital/1.txt", UserID, True, "txt"); //Map
  Response = OPI_Tools.JSONString(Response); //JSON string
    
  oint viber SendFile --token %token% --file %file% --user "tMNGh111111111D+bT4g" --ischannel %ischannel% --ext %ext% --size %size%

{
  "chat_hostname": "SN-CHAT-09_",
  "message_token": 5925491906424759104,
  "status_message": "ok",
  "status": 0
  }