Skip to content

Commit e8bbf98

Browse files
committed
up
1 parent ccd9aa4 commit e8bbf98

File tree

5 files changed

+28
-1
lines changed

5 files changed

+28
-1
lines changed

apigratis_sdk_python.egg-info/PKG-INFO

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 1.0
22
Name: apigratis-sdk-python
3-
Version: 0.0.2
3+
Version: 0.0.3
44
Summary: Transforme seus projetos em soluções inteligentes com nossa API. Com recursos como API do WhatsApp, geolocalização, rastreamento de encomendas, verificação de CPF/CNPJ e mais, você pode criar soluções eficientes e funcionais. Comece agora.
55
Home-page: UNKNOWN
66
Author: APIBRASIL

apigratis_sdk_python.egg-info/SOURCES.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
README.md
22
setup.py
3+
apigratis-sdk-python/ServiceClass.py
34
apigratis-sdk-python/__init__.py
45
apigratis_sdk_python.egg-info/PKG-INFO
56
apigratis_sdk_python.egg-info/SOURCES.txt
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import requests
2+
import json
3+
4+
class ServiceClass:
5+
6+
def __init__(self, data):
7+
self.credentials = data.credentials
8+
self.server = "https://cluster-01.apigratis.com/api/v1/"
9+
10+
def whatsapp(self, data):
11+
12+
url = "whatsapp/"+data.body.action
13+
payload = json.dumps(data.body)
14+
15+
headers = {
16+
'Content-Type': 'application/json',
17+
'SecretKey': self.credentials.SecretKey,
18+
'PublicToken': self.PublicToken,
19+
'Authorization': 'Bearer ' + self.credentials.BearerToken,
20+
'DeviceToken': self.DeviceToken
21+
}
22+
23+
response = requests.request("POST", url, headers=headers, data=payload)
24+
25+
return json.loads(response.text.encode('utf8'))
26+
1.58 KB
Binary file not shown.
2.21 KB
Binary file not shown.

0 commit comments

Comments
 (0)