I'm upgrading an exisitng working solution and using a different language tool to generate the fingerprint. This is handy for testing because I have a working solution to test against.
In the new solution I'm getting error 99. And now I'm going through all the pain to figure out what's off.
New, since the last time I messed with this, is: http://developer.authorize.net/api/reference/responseCode99.html
BUT, what's interesting is that I get a different response from that page than what I get from my working system. I.e, the fingerprint I'm generating, which works, is different than the one provided by the test page.
My question is, is the Response Code 99 Tool still supported?
08-05-2016 05:27 PM
This is the code I'm using to generate the fingerprint: (picked up from this very forum)
import hmac def HMAC(key,data): return(hmac.new(key,data).hexdigest())
08-05-2016 06:20 PM