1

我正在尝试编写一个 Python 脚本来列出我所有的 Pull Zones。每次我运行脚本时,我都会收到以下错误:

xmlrpclib.Fault: <Fault 620: 'Method "pullzone.list" does not exist'>

列表区域的文档在这里:http: //support.netdna.com/api/#pullzone.listZones

这是脚本:

#! /usr/bin/python

from xmlrpclib import ServerProxy
from hashlib import sha256
from datetime import datetime, timedelta
from pytz import timezone

apiKey = 'sldjlskdjf'
apiUserId = '0000'

def pullzoneListZones():
    global apiKey, apiUserId
    date = datetime.now(timezone('America/Los_Angeles')).replace(microsecond=0).isoformat() # Must be 'America/Los_Angeles' always!
    authString = sha256(date + ":" + apiKey + ":listZones").hexdigest()
    sp = ServerProxy('http://api.netdna.com/xmlrpc/pullzone')
    return sp.pullzone.list(apiUserId, authString, date)

print pullzoneListZones()

我错过了什么?提前致谢。 免责声明:我为 NetDNA 工作,但知道这里有一个知道 Python。

提前致谢。

4

1 回答 1

1

该方法名称错误 - 应该是

sp.pullzone.listZones(apiUserId, authString, 日期)

有关 api 名称,请参阅http://support.netdna.com/api/#Python

于 2012-03-15T23:32:39.223 回答