Hi,
Is there anyway to encrypt your login for the Betfair API?
Something like (in Python):
seems to trigger invalid password (with or without the appKey), but I'd rather not leave my BF password in plain text in the script if it can be helped....
Is there anyway to encrypt your login for the Betfair API?
Something like (in Python):
Code:
import hashlib
def bfpass(password, appKey=''):
key = password + appKey
return hashlib.md5(key).hexdigest()
payload = 'username=MyUserName&password='+bfpass('myBFPassword')


Comment