Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Marvel API and Insomnia (or Postman): how do I pass the hash value that's required?

I'm a relatively new Javascript programmer and I'm experimenting with the Marvel API (I need to access the images for a project) and having a little trouble wrapping my head around the requirements.

As I understand it, you need to pass a hash and a ts (timestamp, I presume), when calling the API from a server-side app. But I don't see in the documentation that this is required when using a client-side app.

I tried to do some basic endpoint testing with Insomnia and I receive the message "You must provide a hash.". Apparently I need the hash for client-side access as well?

I have seen some NodeJS examples that show you how to generate the hash (for example, https://www.raymondcamden.com/2014/02/02/Examples-of-the-Marvel-API), but nothing for the client side (that I could find). I also don't know how I would generate this within Insomnia (or Postman). Any pointers in the right direction would be appreciated.

I'd also like to ask what role the authorized domains play when accessing the Marvel API from a local machine. Do I need to add localhost to this list?

Thanks for any help!

like image 987
Cerulean Avatar asked Oct 05 '18 17:10

Cerulean


1 Answers

Follow the steps:

  1. Pick an API Endpoint. eg: https://gateway.marvel.com:443/v1/public/characters
  2. Use a query value for ts. ts could be timestamp or any long string. eg: ts=thesoer
  3. Generate a MD5 hash of ts+privatekey+publickey through code or preferrably online. eg: md5(ts + privKey + pubKey) For md5 hash: http://www.md5.cz/
  4. Join the dots. URL?ts=val&apikey=key&hash=md5Hash. eg. https://gateway.marvel.com:443/v1/public/characters?ts=thesoer&apikey=001ac6c73378bbfff488a36141458af2&hash=72e5ed53d1398abb831c3ceec263f18b
like image 191
Vaibhav Verma Avatar answered Oct 24 '22 22:10

Vaibhav Verma