Postman:Postman简介、安装、入门使用方法详细攻略(二)

1.3、get案例


http://localhost:5000/chain


Postman:Postman简介、安装、入门使用方法详细攻略(二)


{

 "chain": [

   {

     "index": 1,

     "previous_hash": "1",

     "proof": 100,

     "timestamp": 1523154040.807251,

     "transactions": []

   },

   {

     "index": 2,

     "previous_hash": "bcf967686847793897aab280b106ea30017c439aaeec21c9c7bd95472158268f",

     "proof": 12383,

     "timestamp": 1523154095.569124,

     "transactions": [

       {

         "amount": 1,

         "recipient": "b5ae874dc9324a128f4889f89e340112",

         "sender": "0"

       }

     ]

   }

 ],

 "length": 2

}


pipenv run python blockchain.py

Postman:Postman简介、安装、入门使用方法详细攻略(二)

pipenv run python blockchain.py -p 5001

Postman:Postman简介、安装、入门使用方法详细攻略(二)



1.4、pos​t案例

Postman:Postman简介、安装、入门使用方法详细攻略(二)

Postman:Postman简介、安装、入门使用方法详细攻略(二)

Postman:Postman简介、安装、入门使用方法详细攻略(二)





{

"nodes":["http://127.0.0.1:5001"]

}

{

 "message": "New nodes have been added",

 "total_nodes": [

   "127.0.0.1:5001"

 ]

}




1.5、get案例

Postman:Postman简介、安装、入门使用方法详细攻略(二)




上一篇:Qt5多线程/线程池技术集锦(1)


下一篇:Docker 构建Java 应用程序包