如何在 C# 中使用 Chatter SalesForce WSDL 服务检索 FeedComment
我必须检索销售人员聊天的新闻提要我能够获得主要状态,但无法检索评论。是否有任何示例可以在 c# 中使用 SalesForce chatter WSDL API 获取评论?
I have to retrieve News feed of salesforce chatter I am able to get main status but not able to retrieve comments. Is there any sample to get comments using SalesForce chatter WSDL API in c#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用子关系查询从 NewsFeed 遍历到子 FeedComments。下面是一个 SOQL 查询的示例,它返回给定用户的主要状态和评论:
具体不太确定 C#,但它可能会以嵌套数组的形式返回 FeedComments。以下是在 Apex 中迭代结果的示例:
You can use child relationship queries to traverse from the NewsFeed to the child FeedComments. Here's an example of a SOQL query that returns both the main status and comments for a given user:
Not sure about C# specifically, but it will likely return the FeedComments as a nested array. Here's an example of iterating over the results in Apex:
这将为您带来 NewsFeed + 评论 + 点赞:
This will get you NewsFeed + Comments + Likes: