通过 FileMaker Pro 发送 HTTP POST
我正在尝试通过 FileMaker Pro 将简单的图像 POST 到 php 脚本。我将图像放在容器中。有没有办法将其发布到我的 URL,以便我可以使用正常的 PHP 上传等来处理处理?有什么插件等可以帮助我做到这一点吗?
谢谢。
I'm trying to do a simple image POST to a php script through FileMaker Pro. I have the image in a container. Is there a way to post this to my URL so that I can use the normal PHP upload etc to take care of the processing? Any plugin etc that can help me do this?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
据我所知,最简单的方法是使用第三方插件,例如:
http://www.troi.com/software/urlplugin.html
The easiest way that I know of is to use a third party plug in like:
http://www.troi.com/software/urlplugin.html
因为您不能只是“获取”容器的内容,所以您需要将容器写入磁盘,然后使用像 troi 文件这样的插件来“读取”图像数据。您可能还想使用像 troi text 这样的插件在上传之前对图像进行编码(base64 很常见),然后在 php 端对其进行解码。
Because you can't just "get" the contents of the container you'll need to write the container to disk and then use a plugin like troi file to "read" in the image data. You may also want to use a plugin like troi text to encode the image before uploading (base64 is pretty common) and then decode it on the php side.