16 lines
324 B
Python
16 lines
324 B
Python
import requests
|
|
|
|
url = "http://8.137.99.82:9005/api/send_click?token=fegergauiernguie&phone=8613661496481"
|
|
|
|
res = requests.post(
|
|
url=url,
|
|
json={
|
|
"phone": "8613661496481",
|
|
"bot_name": "ergggreef",
|
|
"datas": [
|
|
{"send_message": ["grgegg"], "click_button": [""], },
|
|
]
|
|
|
|
}
|
|
)
|