如何将 iOS 中当前线程的新线程和新评论发布到 Salesforce 的 Chatter feed
基本上我正在尝试实现两个目标: (1) 启动一个新的 Chatter 线程,并且 (2) 对已加载的现有 Chatter 线程进行评论。
我正在使用 OAuth 进行连接,并且能够成功查看和更新自定义对象,但似乎无法弄清楚如何使用相同的 [switchboard create:] 方法访问和创建新的聊天线程。
有人知道从哪里开始吗?我已经尝试过他们的文档,我能找到的最好的就是带有正文和父 ID 的异步 HTTPS 帖子,但是如何使用 iOS 客户端中提供的总机界面来完成同样的事情?
任何帮助表示赞赏, 谢谢, 〜阿拉什
Basically I am trying accomplish 2 goals:
(1) Start a new Chatter Thread, and
(2) Comment on an existing Chatter Thread that has been loaded.
I am using OAuth to get connected and am able to successfully view and update custom objects but can't seem to figure out how to access and create a new chatter thread using the same [switchboard create:] method.
Does anyone have any idea where to start? I have tried their documentation and the best I could find was Asynchronous HTTPS posts with a body and a parent ID but how can I accomplish the same thing using the provided switchboard interface in the iOS client?
Any help appreciated,
Thanks,
~Arash
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请查看 GitHub 上的 适用于 iOS 的 Salesforce Mobile SDK。有一个很棒的常见问题解答和访问 Chatter 的示例。
您可以使用 SFRestAPI 访问 Chatter 对象。有关 Chatter 对象之间的查询和关系,请参阅 Chatter REST API 文档。
Please check out the Salesforce Mobile SDK for iOS on GitHub. There's a great FAQ and examples to access Chatter.
You can use the SFRestAPI to access Chatter objects. See the Chatter REST API documentation for queries and relationships between Chatter objects.