numverify.com上的示例表明它需要GET
请求,因此它需要值,get(..., params=...)
但在开始(之前while True
)您使用get()
时没有任何参数 - 这会产生问题。
您不需要post()
并且(在大多数 API 中)您不需要标头和 cookie。
import requests
#list = input('Input Phone Numbers List :')
link = "http://apilayer.net/api/validate"
payload = {
'access_key': '1135810505585d6e034f640fbf30a700',
'number': '',
}
#phone = open(list, 'r')
phone = ['+14158586273', '+46123456789']
for num in phone:
num = num.strip()
if num:
cot = num.split(':')
payload['number'] = cot[0]
response = requests.get(link, params=payload)
print('status:', response.status_code)
print('text:', response.text)
print('---')
data = response.json()
print('number:', data['international_format'])
print('country:', data['country_name'])
print('location:', data['location'])
print('carrier:', data['carrier'])
print('---')
结果:
status: 200
text: {"valid":true,"number":"14158586273","local_format":"4158586273","international_format":"+14158586273","country_prefix":"+1","country_code":"US","country_name":"United States of America","location":"Novato","carrier":"AT&T Mobility LLC","line_type":"mobile"}
---
number: +14158586273
country: United States of America
location: Novato
carrier: AT&T Mobility LLC
---
status: 200
text: {"valid":true,"number":"46123456789","local_format":"0123456789","international_format":"+46123456789","country_prefix":"+46","country_code":"SE","country_name":"Sweden","location":"Valdemarsvik","carrier":"","line_type":"landline"}
---
number: +46123456789
country: Sweden
location: Valdemarsvik
carrier:
---