如何通过Restful API的方式读取SAP Commerce Cloud的Product Reference

从SAP官网上找到api的说明:

https://api.sap.com/api/comme...

如何通过Restful API的方式读取SAP Commerce Cloud的Product Reference_第1张图片

api endpoint: /rest/v2/electronics/products/I042416/references

如何通过Restful API的方式读取SAP Commerce Cloud的Product Reference_第2张图片

其中referenceType参数的值从枚举类ProductReferenceTypeEnum里获得:

下图是Hybris commerce On-Premises里对应的代码,当然也可以查询SAP帮助文档找到这些枚举值:

如何通过Restful API的方式读取SAP Commerce Cloud的Product Reference_第3张图片

这种reference关系类似于CRM里的relationship,可以到表ProductReference里查询获得:

如何通过Restful API的方式读取SAP Commerce Cloud的Product Reference_第4张图片

要调用这个API,必须创建一个grant_type为client_credentials的oauth client:

如何通过Restful API的方式读取SAP Commerce Cloud的Product Reference_第5张图片

并且authorities要维护成ROLE_TRUSTED_CLIENT:

如何通过Restful API的方式读取SAP Commerce Cloud的Product Reference_第6张图片

要获取更多Jerry的原创文章,请关注公众号"汪子熙":

你可能感兴趣的:(rest,restful,rest-api,cloud,cloud-foundry)