jifenqiang.py 325 Bytes
Newer Older
liuxiaoxing committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
import random
import requests
import socket
import struct
import json

# test_url = "http://10.3.20.42:8083/tkioIdfa"
test_url = "http://idfa.trackingio.com/tkioIdfa"


s = json.dumps({
        "idfa":"23212121",
        "token":"5v7Ao9FF78dWW9Tx",
        "appid":"1234557890"
})

p = requests.post(test_url,data=s)
print(p)