This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
京东联盟开放平台API的一个通用的Client封装。 | |
京东联盟开放平台的文档详见 https://union.jd.com/openplatform | |
Example: | |
client = JdApiClient("<YOUR_APP_KEY>", "<YOUR_SECRET_KEY>") | |
resp = client.call("jd.union.open.goods.promotiongoodsinfo.query", | |
{'skuIds':'12072066'}) | |
print(resp.json()) | |
''' |