I have this php
code for calling API, I'm trying to rewrite it into python and I seem I can't get the accesskey configuration right.
Php code:
$privateKey = 'privateKey';
$publicKey = 'publicKey';
$parameters = array('status' => 'upcoming');
$postData = json_encode($parameters);
$accessKey = base64_encode(hash_hmac('sha256', $postData, $privateKey, true));
$ch = curl_init('https://foundico.com/api/v1/icos/');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt($ch, CURLOPT_POSTFIELDS, $postData);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'Content-Type: application/json',
'X-Foundico-Public-Key: '.$publicKey,
'X-Foundico-Access-Key: '.$accessKey
]);
$response = curl_exec($ch);
curl_close($ch);
echo $response;enter code here
Python code:
import requests.auth
import json
import urllib
import hashlib
import base64
import hmac
public_key = 'mypublickey'
private_key = 'myprivatekey'
parameters = {'status':'upcoming'}
postData=json.dumps(parameters)
accessKey1= hmac.new(private_key.encode("utf8"), postData.encode("utf8"), hashlib.sha256)
accessKey = base64.b64encode(accessKey1.hexdigest().encode('utf8')).decode('utf8')
print(accessKey)
url = 'https://foundico.com/api/v1/icos/'
headers = {'Content-Type': 'application/json',
'X-Foundico-Public-Key': public_key,
'X-Foundico-Access-Key': accessKey}
r=requests.post(url,
#headers=headers,
#data=postData)
print(r.json()))
Error: {'error': 480, 'message': 'Private or public key is not valid'}
In PHP you seem to
base64_encode()
a binary string returned fromhash_hmac()
as the fourth parameter tohash_hmac()
istrue
.However in Python you seem to
base64.b64encode()
aaccessKey1.hexdigest()
, i.e. a hex-ified binary string.You should have a look which methods
accessKey1
provides to get a non-hex digest.