大约有 200 项符合查询结果(耗时:0.0040秒) [XML]
使用 JSON 和 Web API · App Inventor 2 中文网
...,该事件有两个重要参数:
响应代码: 服务器提供的HTTP状态码,常见的有 200(OK)或 201(已创建),也可能是 400 之类的值 (错误请求)、403(禁止访问)和 404(未找到)。根据你在应用程序中使用的 API,你应该检查状态...
App Inventor 2 如何连接MySQL数据库(阿里云数据库) · App Inventor 2 中文网
...中设置数据库连接信息
测试代码
注意事项:
返回 HTTP 代码 200 表示SELECT 查询成功
返回 HTTP 代码 201 表示不是有效的 SELECT 查询
返回 HTTP 代码 400,表示 SQL 查询错误
请注意SQL注入风险,加强php代码的检查逻辑
前端代...
创建自定义 TinyWebDB 服务 · App Inventor 2 中文网
...inyWebDB component stores data on a test service provided by App Inventor, http://tinywebdb.appinventor.mit.edu/ . This service is helpful for testing, but it is shared by all App Inventor users, and it has a limit of 1000 entries. If you use it, your data will be overwritten eventually.
For most a...
将Genymotion模拟器与App Inventor一起使用 · App Inventor 2 中文网
...启动 Genymotion AVD,确保 aiStarter 正在运行,然后访问页面 http://appinventor.mit.edu/test.html 。您应该看到[b]:
如果 aiStarter 控制台可见,则应该也能看到一些活动:
让 AVD 和 aiStarter 保持运行。
下载 MIT AI2 Companion App [c]http://...
访问图像和声音 · App Inventor 2 中文网
...应用程序自动获得它们。
URL 和 Web
可以使用以 http:// 开头的 URL 来访问 Web 上的文件,例如将图像的图片属性设置为:http://www.google.com/images/srpr/nav_logo14.png
音乐和视频也是如此,确保使用指向实际文件的链接,而不...
App Inventor 2 中文网 · 升级日志
...翻译。 230516 2023/05/16 优化 启用HSTS(HTTP Strict Transport Security)安全机制。 升级 启用 h2(HTTP 2.0)协议。 230418 2023/04/18 新增 公安备案通过,备案号:沪公网安备31011702008921号。 ...
App Inventor 2 接入百度网盘API · App Inventor 2 中文网
...在回调后的URL中拿出access_token,后面操作都需要它:
http://openapi.baidu.com/oauth/2.0/authorize?display=mobile&response_type=token&client_id=[AppKey]&redirect_uri=oob&scope=basic,netdisk
请注意:手机的话,必须将 display=mobile 加上,以展示手机版的授权...
App Inventor 2 天气预报App开发 - 第三方API接入的通用方法 · App Inventor 2 中文网
...的key。
请求示例:北京7天预报
curl -L -X GET --compressed 'https://api.qweather.com/v7/weather/7d?location=101010100&key=YOUR_KEY'
第三方API的调用
使用”Web客户端“组件调用第三方API,代码如下:
JSON结果的解析
请求成功返回JSON示例
{
"code...
使用App Inventor扩展实现多点触控:Scale Detector · App Inventor 2 中文网
...建演示源应用程序。 要构建应用程序,你需要使用位于 http://extension-test.appinventor.mit.edu 的 App Inventor 测试服务器。 你还需要使用与该实例对应的 AI Companion。 连接到服务器后,查看“帮助”->“伴侣信息”以下载该伴侣。 当你...
使用 XML 和 Web 服务 · App Inventor 2 中文网
... Weather is discontinued. As an alternative, Openweathermap could be used: https://openweathermap.org/.
Weather Underground’s Weather API is a free service that you can query for weather information at specified locations. We can use this service use this together with the App Inventor Web comp...