Hi there! I have a problem with Python Api wrapper 'magellantoo/ctct-python-sdk' (https://github.com/magellantoo/ctct-python-sdk). Our project gets auth token via frontend, written on PHP. Then API key, access token and some other data are passed into Python script, which registered as RabbitMQ worker. There I instanitate API wrapper and invoke some method, i.e.: ctct = ConstantContact(apikey, access_token) lists = self.ctct.list_service.get_lists() and I've got an expected result set (JSON). But if I invoke any method with param, i.e.: list = self.ctct.list_service.get_list_contacts(list_id) I've got such message '596 Service Not Found' as result. Can anyone help or giv a hint?
... View more