0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

robloxでassistant その25

Last updated at Posted at 2024-05-10

概要

robloxでassistantやってみた。
練習問題やってみた。

練習問題

Qiita APIを叩け。

サンプルコード

local HttpService = game:GetService("HttpService")
local URL_API = "https://qiita.com/api/v2/users/ohisama@github/items"
local response = HttpService:GetAsync(URL_API)
local data = HttpService:JSONDecode(response)
--print(data)
for j in data do
	print(data[j].title .. "  " .. data[j].created_at)
end


実行結果

タイトルがないゲーム @ 10 5 2024 11:33 自動復元ファイルが作成されました  -  Studio
  11:33:32.259  robloxでassistant その24  2024-05-10T11:03:06+09:00  -  サーバー - Script:10
  11:33:32.259  robloxでassistant その23  2024-05-10T07:52:03+09:00  -  サーバー - Script:10
  11:33:32.260  robloxでassistant その22  2024-05-10T07:30:07+09:00  -  サーバー - Script:10
  11:33:32.260  robloxでassistant その21  2024-05-10T07:23:24+09:00  -  サーバー - Script:10
  11:33:32.260  robloxでassistant その20  2024-05-10T07:16:38+09:00  -  サーバー - Script:10
  11:33:32.260  robloxでassistant その19  2024-05-10T06:34:17+09:00  -  サーバー - Script:10
  11:33:32.260  robloxでassistant その18  2024-05-09T18:33:24+09:00  -  サーバー - Script:10
  11:33:32.260  robloxでassistant その17  2024-05-09T06:14:47+09:00  -  サーバー - Script:10
  11:33:32.260  robloxでassistant その16  2024-05-09T05:37:06+09:00  -  サーバー - Script:10
  11:33:32.261  robloxでassistant その15  2024-05-07T08:21:49+09:00  -  サーバー - Script:10
  11:33:32.261  robloxでassistant その14  2024-05-05T11:29:40+09:00  -  サーバー - Script:10
  11:33:32.261  robloxでassistant その13  2024-05-05T11:13:47+09:00  -  サーバー - Script:10
  11:33:32.261  robloxでassistant その12  2024-05-05T11:08:48+09:00  -  サーバー - Script:10
  11:33:32.261  robloxでassistant その11  2024-05-05T11:06:47+09:00  -  サーバー - Script:10
  11:33:32.261  robloxでassistant その10  2024-05-05T11:05:22+09:00  -  サーバー - Script:10
  11:33:32.262  robloxでassistant その9  2024-05-04T08:24:24+09:00  -  サーバー - Script:10
  11:33:32.262  robloxでassistant その8  2024-05-04T08:22:15+09:00  -  サーバー - Script:10
  11:33:32.262  robloxでassistant その7  2024-05-04T08:19:49+09:00  -  サーバー - Script:10
  11:33:32.262  robloxでassistant その6  2024-05-04T08:17:09+09:00  -  サーバー - Script:10
  11:33:32.262  robloxでassistant その5  2024-05-04T08:14:43+09:00  -  サーバー - Script:10
  11:33:42.436  Disconnect from ::ffff:127.0.0.1|56245  -  Studio
  11:35:47.355  タイトルがないゲーム 自動復元ファイルが作成されました  -  Studio

以上。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?