Hi Team,
I have a very basic question. I want to get response of below call via POSTMAN -
streamchain: getinfo
{"method":"getinfo","params":[],"id":1,"chain_name":"streamchain"}
My config file is as below -
rpcuser=multichainrpc
rpcpassword=XXXXXXXX
rpcallowip=0.0.0.0/0
rpchost=127.0.0.1
Blockchain parameters is as below -
- "default-network-port" : 6271
- "default-rpc-port" : 6270
- "nodeaddress" : "streamchain@X.Y.Z.A:6271
In POSTMAN -
Authorization Section: Type ->"Basic Auth" Username -> multichainrpc Password ->rpcpassword
Header Section: Content-Type -> Application/JSON
Body Section: Selected "raw" type & added this: {"method":"getinfo","params":[],"id":1,"chain_name":"streamchain"}
Call Type : POST
URL: http://X.Y.Z.A:6271/
I am not receiving any response although my cli is working fine.
Please let me know if I am making any mistake.