I've created a new account to use the Marvel API's, but I'm having some trouble to make calls to it.
I've generated a hash based on these parameters:
timestamp: 1561464418685
public key: 3e6f6a484529014f288cc251191b85d0
private key: 0e70d6990a8135b5409ede2cbab3a9e913c6b9c3
So I've concatenated the parameters into a single string like this:
15614644186850e70d6990a8135b5409ede2cbab3a9e913c6b9c33e6f6a484529014f288cc251191b85
d0
and then applied MD5 hash, returning the following hash:
57d62328aea6fb144458312efbdf7989
and finally, the complete call:
https://gateway.marvel.com/v1/public/characters?ts=1561464418685&apikey=3e6f6a484529014f288cc251191b85d0&hash=57d62328aea6fb144458312efbdf7989
But the only return I'm getting is the following:
{"code":"InvalidCredentials","message":"This user is not allowed to use that service."}
I'm trying to make the request on browser(Chrome) and Postman.
Here is a print of my account configuration on Marvel Developer Panel, it seems that my user isn't really allowed to make the calls to the API, cause the number os API calls isn't displayed.
Any hint would be very useful.
Thanks a lot!