├── .gitignore ├── Demos ├── WPPCloudAPI4DelphiDEMO.dpr ├── WPPCloudAPI4DelphiDEMO.dproj ├── WPPCloudAPI4DelphiDEMO.mes ├── WPPCloudAPI4DelphiDEMO.res ├── WPPCloudAPI4DelphiDEMO_Icon.ico ├── uPrincipal.dfm └── uPrincipal.pas ├── LICENSE ├── Packages ├── Unit1.pas ├── WPPCloudAPI4Delphi.dpk ├── WPPCloudAPI4Delphi.dproj └── WPPCloudAPI4Delphi.res ├── README.md └── Source ├── uInstagram.pas ├── uRetMensagemApiOficial.pas ├── uTWPPCloudAPI.Emoticons.pas ├── uWPPCloudAPI.pas ├── uWPPCloudAPI_indy.pas └── uWhatsAppBusinessClasses.pas /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelo386/WPPCloudAPI4Delphi/HEAD/.gitignore -------------------------------------------------------------------------------- /Demos/WPPCloudAPI4DelphiDEMO.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelo386/WPPCloudAPI4Delphi/HEAD/Demos/WPPCloudAPI4DelphiDEMO.dpr -------------------------------------------------------------------------------- /Demos/WPPCloudAPI4DelphiDEMO.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelo386/WPPCloudAPI4Delphi/HEAD/Demos/WPPCloudAPI4DelphiDEMO.dproj -------------------------------------------------------------------------------- /Demos/WPPCloudAPI4DelphiDEMO.mes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelo386/WPPCloudAPI4Delphi/HEAD/Demos/WPPCloudAPI4DelphiDEMO.mes -------------------------------------------------------------------------------- /Demos/WPPCloudAPI4DelphiDEMO.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelo386/WPPCloudAPI4Delphi/HEAD/Demos/WPPCloudAPI4DelphiDEMO.res -------------------------------------------------------------------------------- /Demos/WPPCloudAPI4DelphiDEMO_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelo386/WPPCloudAPI4Delphi/HEAD/Demos/WPPCloudAPI4DelphiDEMO_Icon.ico -------------------------------------------------------------------------------- /Demos/uPrincipal.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelo386/WPPCloudAPI4Delphi/HEAD/Demos/uPrincipal.dfm -------------------------------------------------------------------------------- /Demos/uPrincipal.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelo386/WPPCloudAPI4Delphi/HEAD/Demos/uPrincipal.pas -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelo386/WPPCloudAPI4Delphi/HEAD/LICENSE -------------------------------------------------------------------------------- /Packages/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelo386/WPPCloudAPI4Delphi/HEAD/Packages/Unit1.pas -------------------------------------------------------------------------------- /Packages/WPPCloudAPI4Delphi.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelo386/WPPCloudAPI4Delphi/HEAD/Packages/WPPCloudAPI4Delphi.dpk -------------------------------------------------------------------------------- /Packages/WPPCloudAPI4Delphi.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelo386/WPPCloudAPI4Delphi/HEAD/Packages/WPPCloudAPI4Delphi.dproj -------------------------------------------------------------------------------- /Packages/WPPCloudAPI4Delphi.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelo386/WPPCloudAPI4Delphi/HEAD/Packages/WPPCloudAPI4Delphi.res -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelo386/WPPCloudAPI4Delphi/HEAD/README.md -------------------------------------------------------------------------------- /Source/uInstagram.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelo386/WPPCloudAPI4Delphi/HEAD/Source/uInstagram.pas -------------------------------------------------------------------------------- /Source/uRetMensagemApiOficial.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelo386/WPPCloudAPI4Delphi/HEAD/Source/uRetMensagemApiOficial.pas -------------------------------------------------------------------------------- /Source/uTWPPCloudAPI.Emoticons.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelo386/WPPCloudAPI4Delphi/HEAD/Source/uTWPPCloudAPI.Emoticons.pas -------------------------------------------------------------------------------- /Source/uWPPCloudAPI.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelo386/WPPCloudAPI4Delphi/HEAD/Source/uWPPCloudAPI.pas -------------------------------------------------------------------------------- /Source/uWPPCloudAPI_indy.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelo386/WPPCloudAPI4Delphi/HEAD/Source/uWPPCloudAPI_indy.pas -------------------------------------------------------------------------------- /Source/uWhatsAppBusinessClasses.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelo386/WPPCloudAPI4Delphi/HEAD/Source/uWhatsAppBusinessClasses.pas --------------------------------------------------------------------------------