clientoficial

package module
v1.4.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 12, 2025 License: Unlicense Imports: 18 Imported by: 0

README

Al crear un cliente la propiedad 'Config.EnvFilePath' debe ser igual al path del archivo .env. Mas detalles en ayuda de propiedad

Ejemplo de archivo .env

## Configuration pra api oficial
# The base URL to send all SDK requests to (default graph.facebook.com).
# This variable should not be used unless necessary for development or special routing needs.
WA_BASE_URL=https://graph.facebook.com

# Your Meta for Developers app Id.
M4D_APP_ID=

# Your Meta for Developers Business app secret.
M4D_APP_SECRET=

# Your WhatsApp phone number Id (sender).
WA_PHONE_NUMBER_ID=249295244938809

# Your WhatsApp business account Id.
WA_BUSINESS_ACCOUNT_ID=

# System user access token. Recommended: Do not use a temporary access token.
CLOUD_API_ACCESS_TOKEN=EAAK4ICnxmZCYBO4ZADx2GnL0ZBgH6M0v5bSBZAB3kN10pN8UPRZCWUaGZBsqRc25ZA7kqZCCbvRSTmq25z5HxY7QKDoKjxxeXZBEZAhsgZCYA16aMLHKv5xD2RleZC6OOsUOaJdMHcKXZAzM0JvU7ESUej2KRxnpn4s69HnpZAOTbIVoCiAZCFLDG29BaO0uY2ZCIVR1Y0G0RwZDZD

# Cloud API version number.
CLOUD_API_VERSION=v22.0

# Customize your incoming webhook listener endpoint. Path should be
# https://{host}/{WEBHOOK_ENDPOINT}. A trailing slash is not added by default,
# so the variable should include that if it's required by your API gateway.
WEBHOOK_ENDPOINT=

# A custom verification token string to validate incoming webhook payloads.
# Needs to match webhook configuration.
WEBHOOK_VERIFICATION_TOKEN=

# Override the default app listener port (port 3000).
LISTENER_PORT=

# Turn on global debug logging
DEBUG=

# The number of request retries after waiting (default 30 retries)
MAX_RETRIES_AFTER_WAIT=

# The timeout period in milliseconds for a request to wait for a response (default 20000ms)
REQUEST_TIMEOUT=

Instalando paquete

go get github.com/ecsavigne/client_wa_oficial
ó
go get github.com/ecsavigne/client_wa_oficial@latest

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	WA_BASE_URL                string
	M4D_APP_ID                 string
	M4D_APP_SECRET             string
	WA_PHONE_NUMBER_ID         string
	WA_BUSINESS_ACCOUNT_ID     string
	CLOUD_API_ACCESS_TOKEN     string
	CLOUD_API_VERSION          string
	WEBHOOK_ENDPOINT           string
	WEBHOOK_VERIFICATION_TOKEN string
	LISTENER_PORT              string
	DEBUG                      string
	MAX_RETRIES_AFTER_WAIT     string
	REQUEST_TIMEOUT            string
)

Functions

This section is empty.

Types

type ClientWA

type ClientWA struct {
	*Config `json:"config"`
}

func NewClientWA

func NewClientWA(c ...Config) *ClientWA

Create one Client of WhatsApp Official return *ClientWA : - If the EnvFilePath or Path in Config.EnvFilePath not found. ClientWA.Error = &types.Error{Type: types.TypeErrorConfig, Code: types.CodeErrorEnvNotFound, Message: types.MsgErrorEnvNotFound} - If occurred error in conection with WebHook Socket emit one event type: event.EventErrorSocketConnect

func (*ClientWA) DownloadFile added in v1.2.7

func (c *ClientWA) DownloadFile()

func (*ClientWA) SendAudioMessage

func (c *ClientWA) SendAudioMessage(m types.Messager) types.ResponserRequest

func (*ClientWA) SendContactMessage

func (c *ClientWA) SendContactMessage(m types.Messager) types.ResponserRequest

func (*ClientWA) SendDocumentMessage

func (c *ClientWA) SendDocumentMessage(m types.Messager) types.ResponserRequest

func (*ClientWA) SendImageMessage

func (c *ClientWA) SendImageMessage(m types.Messager) types.ResponserRequest

func (*ClientWA) SendInteractiveButtonResponse

func (c *ClientWA) SendInteractiveButtonResponse(m types.Messager) types.ResponserRequest

func (*ClientWA) SendInteractiveButtonUrl

func (c *ClientWA) SendInteractiveButtonUrl(m types.Messager) types.ResponserRequest

func (*ClientWA) SendInteractiveCatalog

func (c *ClientWA) SendInteractiveCatalog(m types.Messager) types.ResponserRequest

func (*ClientWA) SendInteractiveList

func (c *ClientWA) SendInteractiveList(m types.Messager) types.ResponserRequest

func (*ClientWA) SendInteractiveMsgProcess

func (c *ClientWA) SendInteractiveMsgProcess(m types.Messager) types.ResponserRequest

func (*ClientWA) SendInteractiveMultiProduct

func (c *ClientWA) SendInteractiveMultiProduct(m types.Messager) types.ResponserRequest

func (*ClientWA) SendInteractiveOneProduct

func (c *ClientWA) SendInteractiveOneProduct(m types.Messager) types.ResponserRequest

func (*ClientWA) SendLocationMessage

func (c *ClientWA) SendLocationMessage(m types.Messager) types.ResponserRequest

func (*ClientWA) SendReaction

func (c *ClientWA) SendReaction(m types.Messager) types.ResponserRequest

func (*ClientWA) SendResponseMsg

func (c *ClientWA) SendResponseMsg(m types.Messager) types.ResponserRequest

func (*ClientWA) SendStickerMessage

func (c *ClientWA) SendStickerMessage(m types.Messager) types.ResponserRequest

func (*ClientWA) SendTemplate

func (c *ClientWA) SendTemplate(m types.Messager) types.ResponserRequest

func (*ClientWA) SendTextMessage

func (c *ClientWA) SendTextMessage(m types.Messager) types.ResponserRequest

SendTextMessage send a text message

func (*ClientWA) SendVideoMessage

func (c *ClientWA) SendVideoMessage(m types.Messager) types.ResponserRequest

func (*ClientWA) UploadFile added in v1.2.7

func (c *ClientWA) UploadFile(m types.Messager, mt types.MediaType) error

type Config

type Config struct {
	Token string `json:"token"`
	// Path del archivo .env incluyendo el nombre del archivo sin la extensión ej: file: /.../../config_env.env -> EnvFilePath: /.../../config_env
	EnvFilePath string `json:"env_file_path"`
	Error       error
	// Url del servidor WebHook con ruta /ws para conectar con el servidor WebSocket ej: wss://webhooks.savcoe-services.com/ws
	WebhookSocket string    `json:"webhook_socket"`
	EventHandle   func(any) // Funcion para manejar los eventos del servidor WebHook WebSocket
	// contains filtered or unexported fields
}

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL