Documentation
¶
Index ¶
- Variables
- type ClientWA
- func (c *ClientWA) DownloadFile()
- func (c *ClientWA) SendAudioMessage(m types.Messager) types.ResponserRequest
- func (c *ClientWA) SendContactMessage(m types.Messager) types.ResponserRequest
- func (c *ClientWA) SendDocumentMessage(m types.Messager) types.ResponserRequest
- func (c *ClientWA) SendImageMessage(m types.Messager) types.ResponserRequest
- func (c *ClientWA) SendInteractiveButtonResponse(m types.Messager) types.ResponserRequest
- func (c *ClientWA) SendInteractiveButtonUrl(m types.Messager) types.ResponserRequest
- func (c *ClientWA) SendInteractiveCatalog(m types.Messager) types.ResponserRequest
- func (c *ClientWA) SendInteractiveList(m types.Messager) types.ResponserRequest
- func (c *ClientWA) SendInteractiveMsgProcess(m types.Messager) types.ResponserRequest
- func (c *ClientWA) SendInteractiveMultiProduct(m types.Messager) types.ResponserRequest
- func (c *ClientWA) SendInteractiveOneProduct(m types.Messager) types.ResponserRequest
- func (c *ClientWA) SendLocationMessage(m types.Messager) types.ResponserRequest
- func (c *ClientWA) SendReaction(m types.Messager) types.ResponserRequest
- func (c *ClientWA) SendResponseMsg(m types.Messager) types.ResponserRequest
- func (c *ClientWA) SendStickerMessage(m types.Messager) types.ResponserRequest
- func (c *ClientWA) SendTemplate(m types.Messager) types.ResponserRequest
- func (c *ClientWA) SendTextMessage(m types.Messager) types.ResponserRequest
- func (c *ClientWA) SendVideoMessage(m types.Messager) types.ResponserRequest
- func (c *ClientWA) UploadFile(m types.Messager, mt types.MediaType) error
- type Config
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 ¶
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
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 }
Click to show internal directories.
Click to hide internal directories.