通过调用接口查询ISBN的图书信息

请求地址为:http://49.234.70.238:9001/book/worm/isbn?isbn=9787516820940&tenantId=AAA&sign=BBB

协议        : http

method   : get  

isbn         :表示图书的条码

tenantId  :系统下发给租户ID

sign         :签名字符串。

                   sign   =   MD5((isbn+key),"utf-8")

 

注意:

1、仅用于学习探讨,不可商用!

2、如需使用联系微信或者QQ  524119442  申请tenantId 和 key。申请时请说明用途

 

 

 

返回数据如下

 

{
    "status":true,  //是否请求成功                           
    "error":{
        "code": "99999",
        "message":"xCCCCCCCCCC"
    },  //非200返回码时,此处为错误信息
    "data":[       //数据
        {
            "code":613185394502144000,                       //唯一编号
            "isbn":"9787020018635",                          //isbn编号
            "splitIsbn":null,                                //使用-号分割的isbn
            "name":"莫黛斯特·米尼翁婚约",                      //名称
            "englishName":"",
            "title":"长篇小说--法国--近代",
            "seriesName":null,
            "copiesCount":null,
            "cip":null,
            "clc":"I565.44",
            "author":"(法)巴尔扎克(Balzac)著;袁树仁译",
            "introduction":null,
            "content":null,
            "publisher":"人民文学出版社",
            "publishingTime":"1998",
            "publishingAddress":"北京",
            "edition":null,
            "print":null,
            "score":null,
            "translate":"袁树仁译",
            "editor":null,
            "illustrator":null,
            "pageCount":null,
            "folio":null,
            "size":null,
            "weight":null,
            "price":null,
            "image":null
        }
    ]
}

 

 

你可能感兴趣的:(book)