How the access feeds

Comments

1 comment

  • Permanently deleted user

    Hi Peer,

    DY.feedProperties would only work on PDPs since it would take the SKU that is reported to DY via page context and look for it in the feed. In this link, the function is also taking the SKU from the PDP context and looking for it in the feed.

    Since the feed you have built doesn't match any PDPs on the site, you would not be able to query the feed with the regular methods.

    What you could do is check the feed by supplying a specific "SKU" in the function:

    DY.ServerUtil.getProductsData(["<sku>"], "", "", true, function(e, data) {
      ...
    });

    This would then return data from the feed if such SKU exists there.

    Comment actions Permalink

Please sign in to leave a comment.