Skip to content

Commit 6fd56fa

Browse files
committed
fist test
1 parent 0603195 commit 6fd56fa

File tree

4 files changed

+26
-0
lines changed

4 files changed

+26
-0
lines changed
+26
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+
-3 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

teste/teste.py

Whitespace-only changes.

0 commit comments

Comments
 (0)