通过 iOS 应用程序将图像上传到 Salesforce

发布于 2025-01-03 23:43:41 字数 215 浏览 0 评论 0原文

我正在尝试将图像上传到 Salesforce,就像通过我的 Phonegap iOS 应用程序更新潜在客户或帐户一样。我可以获取图像,但通过谷歌搜索一下,我知道我必须将图像转换为 BLOB。

我的疑问是关于两件事: 1. 如何将图像转换为blob? 2. 如何将该 blob 上传到 Salesforce?

提前致谢

I am trying to upload image to Salesforce just like updating Leads or Accounts through my Phonegap iOS app. I can get the image but by googling a bit, I got to know that i have to convert the image into a BLOB.

My query is about two things:
1. How to convert the image into a blob?
2. How to upload that blob to Salesforce?

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

ヤ经典坏疍 2025-01-10 23:43:41

Blob 只是一个二进制大对象,即一堆二进制数据。您只想将文件读入内存并直接使用它的内容。可能需要对其进行base64编码,但我不会这么认为。

这里有一个用于在 iOS 上下载二进制数据的 Phonegap 插件 ,您可以看到它如何使用标准 Apple SDK 调用进行文件访问,因此打开它们对您来说应该不成问题。

博客将是对象上的一个字段,就像您的帐户和联系人上的字段一样,我不确定您如何指定大小,但将二进制数据放入该字段应该不成问题。

有一个使用 REST API 上传二进制数据(到document)here - 我想你的解决方案将与此类似。您的应用程序使用什么 Salesforce API?您使用他们的移动 SDK 吗?

A blob is just a Binary Large OBject, i.e. a lump of binary data. You just want to read the file into memory and use it's content directly. There may be a need to base64 encode it, but I wouldn't have thought so.

There's a Phonegap plugin for downloading binary data on iOS here, you can see how it uses the standard Apple SDK calls for file access, so opening them shouldn't be a problem for you.

The blog would be a field on an object, much like fields on your Accounts and Contacts, I'm not sure how you specify the size, but putting the binary data into the field shouldn't be a problem.

There's an example of using the REST API to upload binary data (to a document) here — I imagine your solution would be similar to this. What Salesforce API are you using for your app? Are you using their Mobile SDK?

奢望 2025-01-10 23:43:41

您可以使用 Salesforce Mobile 应用程序将图像附加到 iPhone 上的 Salesforce 记录。这需要一点定制——VF 页面和 apex 类。创建用于附件的 VF 页面后,您需要将此 VF 页面添加为“Visualforce 选项卡”并在 Salesforce Mobile 配置上启用它。将新创建的 Visualforce 选项卡添加到 Salesforce Mobile 配置中的步骤:设置 -> 移动管理 -> Salesforce Mobile -> 配置 ->“选择您的配置”-> 移动选项卡。

现在,使用 Salesforce 应用程序上的此选项卡,您可以将图像作为附件上传。

You can attach images to Salesforce record on iPhone using Salesforce Mobile app. This requires a little customization - VF page and apex class. Once you have created the VF page for attachment, then you need add this VF page as 'Visualforce Tab' and enable it on Salesforce Mobile Configuration. Steps to add the newly created Visualforce Tab onto Salesforce Mobile Configuration : Setup->Mobile Administration->Salesforce Mobile->Configuration->'Select your Configuration'->Mobile Tab.

Now using this tab on Salesforce app, you can upload images as attachment.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文