以编程方式访问位于 salesforce 上的 excel 文件
我是 salesforce 平台的新手。我正在处理的任务涉及 salesforce 上的一些 excel 文件。我必须编写一个程序来分析这些 excel 文件中的数据并生成报告。关于执行此操作,我有以下问题
我需要以编程方式将这些 excel 文件本地下载到我的计算机吗?如果是的话,我应该使用什么API呢?如果能提供一个示例,我们将不胜感激。
这可以直接在 salesforce 上完成吗?
谢谢。
I am new to the salesforce platform.The task im working on involves some excel files on salesforce. I have to write a program to analyze the data in these excel files and generate a report.I have the following questions about doing this
Do i need to programmatically download these excel files locally to my machine ?. If yes, what api should i use for this ?. An example would be really appreciated.
Is this something that can be done directly on salesforce ?
Thank You.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你有多种选择,如果你使用.NET或Java,你可能想从soap API开始,你可以运行SOQL查询来访问文档对象的Body字段(我假设您将这些存储在文档中)。 SOAP API 文档 有这方面的示例。对于其他语言,您可能希望从 REST API 开始,您将能够访问文档的正文资源并取回二进制流,同样,docs。
没有。
You have a mutltitude of choices, If you're using .NET or Java, you probably want to start with the soap API, you can run a SOQL query to access the Body field of the document object (I'm assuming you're storing these in documents). The SOAP API docs have examples for this. For other languages you'll probably want to start with the REST API, you'll be able to access the body resource of your document and get back the binary stream, again, good examples in the docs.
No.