英文:
Salesforce product image in listview & detail in Salesforce commerce
问题
截至目前,我正在使用 Postman 使用 GET 方法获取产品列表和产品详细信息。
以下是使用 GET 请求获取产品详细信息的方式。
{{_endpoint}}/services/data/v{{version}}/sobjects/Product2/01t5J0000015fA2s5I
它不返回产品媒体字段,但我们需要获取产品图片。
英文:
As of now i am fetching product list and product detail using on Postman using GET method.
Product Detail using below GET request.
{{_endpoint}}/services/data/v{{version}}/sobjects/Product2/01t5J0000015fA2s5I
It does not return product media field, While we need to fetch product image.
答案1
得分: 1
检查您正在连接的用户。配置文件、权限集。我怀疑该字段未标记为可读,因此API跳过它。该字段是“正常”的还是来自托管包? 如果它是包的一部分,您可能需要许可证。
英文:
Check the user you're connecting with. Profiles, permissions sets. I suspect the field is not marked readable so API skips it. Is the field "normal" or coming from a managed package? You may need a license too if it's part of a package.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论