Hello,
We're creating an integration with a platform that is built on Mailwizz and are unable to get the correct signature string; in PHP this is $signatureString but we're attempting to write this in python.
Here's what we currently have (which returns an API error):
GET http://dashboard.sendreach.com/api/index.php/lists?page=1&per_page=10&X-MW-TIMESTAMP=1444407416&X-MW-PUBLIC-KEY=XXXX"
for GET request: http://dashboard.sendreach.com/api/index.php/lists?page=1&per_page=10
With the following headers:
'Accept-Encoding': 'gzip,deflate',
'Accept': '*/*',
'User-Agent': 'python-requests/2.8.0',
'Connection': 'keep-alive',
'X-MW-PUBLIC-KEY': 'XXXX',
'X-MW-SIGNATURE': 'ZZZZ',
'X-MW-TIMESTAMP': '1444407416'
Anyone out there experience something similar or have suggestions? Thanks!
We're creating an integration with a platform that is built on Mailwizz and are unable to get the correct signature string; in PHP this is $signatureString but we're attempting to write this in python.
Here's what we currently have (which returns an API error):
GET http://dashboard.sendreach.com/api/index.php/lists?page=1&per_page=10&X-MW-TIMESTAMP=1444407416&X-MW-PUBLIC-KEY=XXXX"
for GET request: http://dashboard.sendreach.com/api/index.php/lists?page=1&per_page=10
With the following headers:
'Accept-Encoding': 'gzip,deflate',
'Accept': '*/*',
'User-Agent': 'python-requests/2.8.0',
'Connection': 'keep-alive',
'X-MW-PUBLIC-KEY': 'XXXX',
'X-MW-SIGNATURE': 'ZZZZ',
'X-MW-TIMESTAMP': '1444407416'
Anyone out there experience something similar or have suggestions? Thanks!