QIANFAN-41 - AOE轨道数据


            
import requests

headers = {
    'Authorization': 'Bearer YOUR_API_TOKEN'
}

params = {
    'catId': 62242,
    'channel': 'KY',
    'format': 'TLE'
}

response = requests.get('https://spacemapper.cn/cgi/orbital/aoe/list',
headers=headers, params=params)

print(response.text)