通过 post 从 App Inventor 向 Orion 发送图像

Send image via post from App Inventor to Orion

我试图在使用相机拍摄后通过 POST 将照片发送到 orion,但我因缺乏有关如何使用 App Inventor 执行此操作的信息而苦恼。

有谁知道如何通过网络服务将其发送到 Orion 甚至 MongoDb?

非常感谢您的帮助。

使用 web 组件及其 PostFile 方法,另请参阅 documentation。 然后按照他们的 API 文档(我的猜测是,有可用的 API 文档?)并将 UrlRequestHeaders 放在一起,另请参阅我的 Dropbox example and How to use the PostFile block in App Inventor .

学习 App Inventor 的一个很好的方法是阅读 AI2 免费在线电子书 http://www.appinventor.org/book2 中的免费 Inventor 手册……链接位于网页底部。 'teaches' 书介绍了如何使用 AI2 块进行编程。 这里有免费的编程课程http://www.appinventor.org/content/CourseInABox/Intro and the aia files for the projects in the book are here: http://www.appinventor.org/bookFiles
这里描述了如何使用 App Inventor 做很多基本的事情:http://www.appinventor.org/content/howDoYou/eventHandling .

也做教程http://appinventor.mit.edu/explore/ai2/tutorials.html to learn the basics of App Inventor, then try something and follow the Top 5 Tips: How to learn App Inventor

在 Orion 中存储图片的唯一选择是将其转换为数据 URL。我不建议这样做。您始终可以将图片存储在对象存储中,并在 Orion 中保留一个 URL,这样您就可以在需要时检索图片。