This commit is contained in:
TheSR007 2024-07-14 20:07:48 +06:00
commit d9ba435ec2
97 changed files with 52910 additions and 0 deletions

11
README.MD Normal file
View File

@ -0,0 +1,11 @@
# That Sky Requests
## How to Start
1. Clone This Repo
2. Run Http Debugger to Find new Requests by doing stuff in the game
3. filter out all the other requests and Export it as Sky_Full.json
4. put Sky_Full.json in this directory and run the the Script.py
5. It will go thro each requests and get the first unique request which isn't in the current directory
6. It will create a new .json file with that endpoint and copy the Headers
7. You then need to Include the Request and Response which is the most fit for the .json
8. And Finally push The Changes so we can update the routers accounding to the requests
9. Repeat

69
Scrpit.py Normal file
View File

@ -0,0 +1,69 @@
import os
import json
from urllib.parse import urlparse
# Function to extract endpoints from JSON recursively
def extract_endpoints(data, endpoints=set()):
for entry in data:
url = entry.get('url', '')
parsed_url = urlparse(url)
if parsed_url.scheme == 'https' and parsed_url.netloc == 'live.radiance.thatgamecompany.com':
endpoint = parsed_url.path.strip('/')
endpoints.add(endpoint)
# Function to save request and response to {endpoint}.json files
def save_requests_responses(data, endpoint, directory):
request_header = data.get('request', {}).get('header', '')
response_header = data.get('response', {}).get('header', '')
# Create the request and response strings
request_response_str = f"""/*
{request_header}
*/
//Request
/*
{response_header}
*/
//Response
"""
# Write to endpoint.json only if it doesn't already exist
json_filename = os.path.join(directory, f"{endpoint.replace('/', '_')}.json")
if not os.path.exists(json_filename):
with open(json_filename, 'w') as f:
f.write(request_response_str)
print(f"Created: {json_filename}")
# Read the JSON file
json_file = "Sky_Full.json"
with open(json_file, 'r') as f:
data = json.load(f)
# Extract endpoints
endpoints = set()
extract_endpoints(data, endpoints)
# Sort endpoints by uniqueness
sorted_endpoints = sorted(endpoints)
# Create directories and save JSON files for each endpoint
cwd = os.getcwd()
for endpoint in sorted_endpoints:
endpoint_parts = endpoint.split('/')
for i in range(1, len(endpoint_parts)):
directory = os.path.join(cwd, '/'.join(endpoint_parts[:i]))
if not os.path.exists(directory):
os.makedirs(directory)
# Find any entry with this endpoint and save its request and response
for entry in data:
url = entry.get('url', '')
parsed_url = urlparse(url)
if parsed_url.scheme == 'https' and parsed_url.netloc == 'live.radiance.thatgamecompany.com' and parsed_url.path.strip('/') == endpoint:
save_requests_responses(entry, endpoint, directory)
break
print("Directories and endpoint JSON files created or updated successfully.")

View File

@ -0,0 +1,103 @@
/*
POST /account/ack_collectible HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: LG8I7Ju
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 2477345666
Content-Length: 173
*/
//Request
{
"ack" : "used",
"name" : "butterfly",
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:33:54 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 775
*/
//Response
{
"collectibles" : [
{
"candle_space" : false,
"carrying" : true,
"id" : "butterfly",
"level" : 2,
"permanent_level" : 1,
"used" : true
},
{
"candle_space" : false,
"carrying" : false,
"id" : "cape",
"level" : 2,
"permanent_level" : 1,
"used" : false
},
{
"candle_space" : true,
"carrying" : false,
"id" : "flame",
"level" : 1,
"permanent_level" : 0,
"used" : true
},
{
"candle_space" : true,
"carrying" : false,
"id" : "home",
"level" : 1,
"permanent_level" : 0,
"used" : true
},
{
"candle_space" : true,
"carrying" : false,
"id" : "normal",
"level" : 1,
"permanent_level" : 0,
"used" : true
},
{
"candle_space" : false,
"carrying" : false,
"id" : "point",
"level" : 2,
"permanent_level" : 1,
"used" : true
},
{
"candle_space" : true,
"carrying" : false,
"id" : "sit",
"level" : 1,
"permanent_level" : 0,
"used" : true
},
{
"candle_space" : true,
"carrying" : false,
"id" : "skykid",
"level" : 1,
"permanent_level" : 0,
"used" : true
}
]
}

View File

@ -0,0 +1,45 @@
/*
POST /account/ack_unlock HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: BdBaTAN
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 1509719447
Content-Length: 175
*/
//Request
{
"name" : "CharSkyKid_Hair_TopSharp",
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:18:26 GMT
Content-Type: application/json; charset=utf-8
Connection: keep-alive
Content-Length: 126
*/
//Response
{
"result" : true,
"update_unlocks" : [
{
"ack" : true,
"created_at" : 1717267947,
"name" : "CharSkyKid_Hair_TopSharp",
"type" : "spiritshop"
}
]
}

View File

@ -0,0 +1,57 @@
/*
POST /account/buy_candle_wax HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: ec5eiyA
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 1649439303
Content-Length: 206
*/
//Request
{
"cost" : 150,
"count" : 1,
"currency" : "candles",
"forge_currency" : "wax",
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:25:46 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 291
*/
//Response
{
"currency" : {
"candles" : 5,
"wax" : 24
},
"result" : "ok",
"update_forge_rates" : [
{
"current_level" : 4,
"current_tier" : 26,
"enabled" : true,
"level_completion" : 0.03616920150816440,
"level_tier_count" : 5,
"level_tier_index" : 0,
"reset_acknowledged" : true,
"source_type" : "wax",
"tier_completion" : 0.1808460075408220
}
]
}

View File

@ -0,0 +1,63 @@
/*
POST /account/claim_quest_reward HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: 1exwV4J
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 2477345666
Content-Length: 209
*/
//Request
{
"bonus_percent" : 0.387096760,
"name" : "sunset_race",
"reward_event_name" : "",
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:33:53 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 446
*/
//Response
{
"bonus_amount" : 23,
"bonus_wax_amount" : 23,
"currency" : {
"candles" : 8,
"wax" : 237
},
"result" : "ok",
"update_forge_rates" : [
{
"current_level" : 4,
"current_tier" : 23,
"enabled" : true,
"level_completion" : 0.7212564300745725,
"level_tier_count" : 5,
"level_tier_index" : 3,
"reset_acknowledged" : true,
"source_type" : "wax",
"tier_completion" : 0.6062821503728628
}
],
"update_world_quest" : {
"cooldown_over_time" : 1720854000,
"ever_completed" : true,
"world_quest_def_id" : "sunset_race"
}
}

View File

@ -0,0 +1,103 @@
/*
POST /account/collect_collectible HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: 9C1As1K
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 2477345666
Content-Length: 176
*/
//Request
{
"carrying" : true,
"name" : "butterfly",
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:33:52 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 776
*/
//Response
{
"collectibles" : [
{
"candle_space" : false,
"carrying" : true,
"id" : "butterfly",
"level" : 2,
"permanent_level" : 1,
"used" : false
},
{
"candle_space" : false,
"carrying" : false,
"id" : "cape",
"level" : 2,
"permanent_level" : 1,
"used" : false
},
{
"candle_space" : true,
"carrying" : false,
"id" : "flame",
"level" : 1,
"permanent_level" : 0,
"used" : true
},
{
"candle_space" : true,
"carrying" : false,
"id" : "home",
"level" : 1,
"permanent_level" : 0,
"used" : true
},
{
"candle_space" : true,
"carrying" : false,
"id" : "normal",
"level" : 1,
"permanent_level" : 0,
"used" : true
},
{
"candle_space" : false,
"carrying" : false,
"id" : "point",
"level" : 2,
"permanent_level" : 1,
"used" : true
},
{
"candle_space" : true,
"carrying" : false,
"id" : "sit",
"level" : 1,
"permanent_level" : 0,
"used" : true
},
{
"candle_space" : true,
"carrying" : false,
"id" : "skykid",
"level" : 1,
"permanent_level" : 0,
"used" : true
}
]
}

View File

@ -0,0 +1,141 @@
/*
POST /account/collect_pickup_batch HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: afHCB9d
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 1649439303
Content-Length: 385
*/
//Request
{
"emitters" : [],
"global_pickup_ids" : [],
"level_id" : 2307461961,
"pickup_ids" : [
4283171295,
4283171290,
4283171294,
4283171293,
4283171286,
4283171292,
4283171287,
4283171288,
4283171289
],
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:25:42 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 1389
*/
//Response
{
"batch_results" : [
{
"cc" : 5,
"cid" : "",
"ct" : "wax",
"id" : 4283171286,
"r" : "ok",
"w" : 30647
},
{
"cc" : 5,
"cid" : "",
"ct" : "wax",
"id" : 4283171287,
"r" : "ok",
"w" : 30647
},
{
"cc" : 5,
"cid" : "",
"ct" : "wax",
"id" : 4283171288,
"r" : "ok",
"w" : 30647
},
{
"cc" : 5,
"cid" : "",
"ct" : "wax",
"id" : 4283171289,
"r" : "ok",
"w" : 30647
},
{
"cc" : 5,
"cid" : "",
"ct" : "wax",
"id" : 4283171290,
"r" : "ok",
"w" : 30647
},
{
"cc" : 10,
"cid" : "",
"ct" : "wax",
"id" : 4283171292,
"r" : "ok",
"w" : 30647
},
{
"cc" : 5,
"cid" : "",
"ct" : "wax",
"id" : 4283171293,
"r" : "ok",
"w" : 30647
},
{
"cc" : 5,
"cid" : "",
"ct" : "wax",
"id" : 4283171294,
"r" : "ok",
"w" : 30647
},
{
"cc" : 1,
"cid" : "",
"ct" : "wax",
"id" : 4283171295,
"r" : "ok",
"w" : 30647
}
],
"currency" : {
"candles" : 11,
"wax" : 91
},
"level_id" : 2307461961,
"update_forge_rates" : [
{
"current_level" : 3,
"current_tier" : 21,
"enabled" : true,
"level_completion" : 0.1265954900795329,
"level_tier_count" : 5,
"level_tier_index" : 0,
"reset_acknowledged" : true,
"source_type" : "wax",
"tier_completion" : 0.6329774503976644
}
]
}

View File

@ -0,0 +1,43 @@
/*
POST /account/find_previous_or_empty HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Length: 258
*/
//Request
{
"user": "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"session": "c96c4ac19fd8ead1e884e4a852a7e933",
"server_version": 377,
"client_version": 5019,
"force_empty": false,
"net_flags": 0,
"net_exclusive_flags": 0,
"level_hash": 32977,
"quick_rejoin_players": [],
"recent_players": []
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:27 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 239
*/
//Response
{
"move_ts" : 1720818987,
"platform_filter" : 0,
"ps_only" : false,
"sig" : "4e2aefa017ee95f39211a22b9a90b022f42a8e13497b1e62af828d4391409cc0",
"signature" : "44465d87cbdc0172f9037c1c41ad86a5a22c13c5a75cb8a821bad675ff56899c",
"uri" : "18.236.166.252:42578"
}

View File

@ -0,0 +1,35 @@
/*
POST /account/get_account_world_quests HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: xMYaVTN
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 141
*/
//Request
{
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:14 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 23
*/
//Response
{
"set_world_quests" : []
}

View File

@ -0,0 +1,38 @@
/*
POST /account/get_achievement_defs HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: p0tPfiE
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 155
*/
//Request
{
"platform" : "",
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:24 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 23
*/
//Response
{
"achievement_defs" : []
}

View File

@ -0,0 +1,142 @@
/*
POST /account/get_achievement_stats HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: VKNuIVP
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 141
*/
//Request
{
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:13 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 1404
*/
//Response
{
"achievement_stats" : [
{
"type" : "avatar_charge_count",
"updated" : 1717266678,
"value" : 19551.6760
},
{
"type" : "cape_change_count",
"updated" : 1717265455,
"value" : 2
},
{
"type" : "collectible_count",
"updated" : 1717267486,
"value" : 1
},
{
"type" : "dawn_collectibles_collected_count",
"updated" : 1717267486,
"value" : 1
},
{
"type" : "emotes_collected_count",
"updated" : 1717267200,
"value" : 2
},
{
"type" : "emotes_used_count",
"updated" : 1717267930,
"value" : 2
},
{
"type" : "engine_activated_count",
"updated" : 1717267579,
"value" : 3
},
{
"type" : "fly_continuously_1_minute_count",
"updated" : 1717264528,
"value" : 1
},
{
"type" : "fly_continuously_2_minute_count",
"updated" : 1717264588,
"value" : 1
},
{
"type" : "forged_candle_count",
"updated" : 1717266401,
"value" : 2
},
{
"type" : "hair_change_count",
"updated" : 1717264975,
"value" : 3
},
{
"type" : "highest_cape_level",
"updated" : 1717267529,
"value" : 2
},
{
"type" : "highest_carry_stack_count",
"updated" : 1717265455,
"value" : 1
},
{
"type" : "highest_flight_altitude",
"updated" : 1717267574,
"value" : 83.65780599999999
},
{
"type" : "join_1_player_count",
"updated" : 1717266249,
"value" : 3
},
{
"type" : "join_2_players_count",
"updated" : 1717266264,
"value" : 2
},
{
"type" : "light_candle_count",
"updated" : 1717267648,
"value" : 487
},
{
"type" : "non_unique_hand_hold_count",
"updated" : 1717266132,
"value" : 4
},
{
"type" : "non_unique_high_five_count",
"updated" : 1717264975,
"value" : 1
},
{
"type" : "visit_dawn_temple_exit",
"updated" : 1717268055,
"value" : 1
},
{
"type" : "wax_pickup_count",
"updated" : 1717266647,
"value" : 136
}
]
}

View File

@ -0,0 +1,38 @@
/*
POST /account/get_achievement_stats_tracking HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: 6Qk1Wqc
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 155
*/
//Request
{
"platform" : "",
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:24 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 33
*/
//Response
{
"achievement_stats_tracking" : []
}

View File

@ -0,0 +1,37 @@
/*
POST /account/get_achievements HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: S1IMwX4
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 155
*/
//Request
{
"platform" : "",
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:12 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 19
*/
//Response
{
"achievements" : []
}

View File

@ -0,0 +1,35 @@
/*
POST /account/get_app_badge_number HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: upqVqwQ
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 141
*/
//Request
{
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:18 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 26
*/
//Response
{
"set_app_badge_number" : 0
}

View File

@ -0,0 +1,38 @@
/*
POST /account/get_blocked_friends HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: XxueytX
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 170
*/
//Request
{
"page_max" : 1,
"page_offset" : 0,
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:23 GMT
Content-Type: application/json; charset=utf-8
Connection: keep-alive
Content-Length: 27
*/
//Response
{
"set_blocked_friends" : {}
}

View File

@ -0,0 +1,70 @@
/*
POST /account/get_checkpoints HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: eHl16f0
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 141
*/
//Request
{
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:21 GMT
Content-Type: application/json; charset=utf-8
Connection: keep-alive
Content-Length: 290
*/
//Response
{
"checkpoints" : [
{
"arc_order" : 1,
"bst_id" : 2455,
"is_furthest" : true,
"level_hash" : 36521,
"level_id" : 1649439303,
"states" : [
true,
true,
true,
true,
true,
true,
true,
true,
false,
false,
false,
false,
true,
true,
false,
true,
true,
false,
false,
false,
false,
true,
false
],
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
]
}

View File

@ -0,0 +1,94 @@
/*
POST /account/get_collectibles HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: 4JhP4Kz
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 141
*/
//Request
{
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:17 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 677
*/
//Response
{
"collectibles" : [
{
"candle_space" : false,
"carrying" : false,
"id" : "cape",
"level" : 2,
"permanent_level" : 1,
"used" : false
},
{
"candle_space" : true,
"carrying" : false,
"id" : "flame",
"level" : 1,
"permanent_level" : 0,
"used" : true
},
{
"candle_space" : true,
"carrying" : false,
"id" : "home",
"level" : 1,
"permanent_level" : 0,
"used" : true
},
{
"candle_space" : true,
"carrying" : false,
"id" : "normal",
"level" : 1,
"permanent_level" : 0,
"used" : true
},
{
"candle_space" : false,
"carrying" : false,
"id" : "point",
"level" : 2,
"permanent_level" : 1,
"used" : true
},
{
"candle_space" : true,
"carrying" : false,
"id" : "sit",
"level" : 1,
"permanent_level" : 0,
"used" : true
},
{
"candle_space" : true,
"carrying" : false,
"id" : "skykid",
"level" : 1,
"permanent_level" : 0,
"used" : true
}
]
}

View File

@ -0,0 +1,39 @@
/*
POST /account/get_currency HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: 2fMgII1
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 141
*/
//Request
{
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:12 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 36
*/
//Response
{
"currency" : {
"candles" : 5,
"wax" : 146
}
}

View File

@ -0,0 +1,153 @@
/*
POST /account/get_event_currency_defs HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: yOOuk8
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 141
*/
//Request
{
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:25 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 3130
*/
//Response
{
"event_currency_defs" : [
{
"client_currency" : "event_candle_days_of_aurora",
"event_name" : "global_aurora",
"hud_icon" : "UiMenuEventCurrencyAurora",
"id" : "days_of_aurora",
"name_string_key" : "currency_type_event_candle"
},
{
"client_currency" : "event_candle_days_of_bloom",
"event_name" : "global_bloom",
"hud_icon" : "UiMenuEventCurrencyBloom",
"id" : "days_of_bloom",
"name_string_key" : "currency_type_event_candle"
},
{
"client_currency" : "event_candle_days_of_pastrycafe",
"event_name" : "global_cafe",
"hud_icon" : "UiMenuEventCurrencyCafe",
"id" : "days_of_cafe",
"name_string_key" : "currency_type_event_candle"
},
{
"client_currency" : "event_candle_days_of_color",
"event_name" : "global_rainbow",
"hud_icon" : "UiMenuEventCurrencyColor",
"id" : "days_of_color",
"name_string_key" : "currency_type_event_candle"
},
{
"client_currency" : "event_candle_days_of_competition",
"event_name" : "global_competition",
"hud_icon" : "UiMenuEventCurrencyCompetition",
"id" : "days_of_competition",
"name_string_key" : "currency_type_event_candle"
},
{
"client_currency" : "event_candle_days_of_fashion",
"event_name" : "global_fashion",
"forge_cost" : 10,
"hud_icon" : "UiMenuEventCurrencyFashion",
"id" : "days_of_fashion",
"name_string_key" : "currency_type_event_candle"
},
{
"client_currency" : "event_candle_days_of_feast",
"event_name" : "global_feast",
"hud_icon" : "UiMenuEventCurrencyFeast",
"id" : "days_of_feast",
"name_string_key" : "currency_type_event_candle"
},
{
"client_currency" : "event_candle_days_of_fireworks",
"event_name" : "global_fireworks",
"hud_icon" : "UiMenuEventCurrencyFireworks",
"id" : "days_of_fireworks",
"name_string_key" : "currency_type_event_candle"
},
{
"client_currency" : "event_candle_days_of_fortune",
"event_name" : "global_daysoffortune",
"hud_icon" : "UiMenuEventCurrencyFortune",
"id" : "days_of_fortune",
"name_string_key" : "currency_type_event_candle"
},
{
"client_currency" : "event_candle_days_of_love",
"event_name" : "global_daysoflove",
"hud_icon" : "UiMenuEventCurrencyLove",
"id" : "days_of_love",
"name_string_key" : "currency_type_event_candle"
},
{
"client_currency" : "event_candle_days_of_mischief",
"event_name" : "global_halloween",
"forge_cost" : 80,
"hud_icon" : "UiMenuEventCurrencyMischief",
"id" : "days_of_mischief",
"name_string_key" : "currency_type_event_candle"
},
{
"client_currency" : "event_candle_days_of_moonlight",
"event_name" : "global_moonlight",
"forge_cost" : 12,
"hud_icon" : "UiMenuEventCurrencyMoonlight",
"id" : "days_of_moonlight",
"name_string_key" : "currency_type_event_candle"
},
{
"client_currency" : "event_candle_days_of_music",
"event_name" : "global_music",
"hud_icon" : "UiMenuEventCurrencyMusic",
"id" : "days_of_music",
"name_string_key" : "currency_type_event_candle"
},
{
"client_currency" : "event_candle_days_of_nature",
"event_name" : "global_nature_2024",
"hud_icon" : "UiMenuEventCurrencyNature",
"id" : "days_of_nature",
"name_string_key" : "currency_type_event_candle"
},
{
"client_currency" : "event_candle_days_of_sky",
"event_name" : "global_skyfest",
"forge_cost" : 6,
"hud_icon" : "UiMenuEventCurrencySky",
"id" : "days_of_sky",
"name_string_key" : "currency_type_event_candle"
},
{
"client_currency" : "event_candle_days_of_sunlight",
"event_name" : "global_summer",
"hud_icon" : "UiMenuEventCurrencySunlight",
"id" : "days_of_summer",
"name_string_key" : "currency_type_event_candle"
}
]
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,38 @@
/*
POST /account/get_external_friends HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: 8wQh9Vf
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 156
*/
//Request
{
"max_count" : 64,
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:21 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 31
*/
//Response
{
"external_account_friends" : []
}

View File

@ -0,0 +1,49 @@
/*
POST /account/get_forge_rates HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: AKVhPym
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 141
*/
//Request
{
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:12 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 203
*/
//Response
{
"forge_rates" : [
{
"current_level" : 4,
"current_tier" : 26,
"enabled" : true,
"level_completion" : 0.0,
"level_tier_count" : 5,
"level_tier_index" : 0,
"reset_acknowledged" : true,
"source_type" : "wax",
"tier_completion" : 0.0
}
]
}

View File

@ -0,0 +1,40 @@
/*
POST /account/get_friend_statues HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: EJnlkak
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 164
*/
//Request
{
"max" : 150,
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"sort_ver" : 1,
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:11 GMT
Content-Type: application/json; charset=utf-8
Connection: keep-alive
Content-Length: 58
*/
//Response
{
"constellation_friend_pages" : [],
"set_friend_statues" : []
}

View File

@ -0,0 +1,44 @@
/*
POST /account/get_friends HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id:
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 154
*/
//Request
{
"players" : [
"bfdc112f-07cd-467c-80aa-ad1a2a980f95",
"0983c7f1-a829-495f-af4a-a7a6ef997ba1",
"44d58290-5729-46ef-983a-2723e0da1f9b",
"6fcd98ac-6f47-4394-a2df-60cf9dfe119b",
"ec9fa2e6-4ed0-42b9-a00e-279a7ae02a8e",
"13f4e92b-c39f-43a5-ae6f-f05509c43414"
],
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:10 GMT
Content-Type: application/json; charset=utf-8
Connection: keep-alive
Content-Length: 21
*/
//Response
{
"set_friends" : []
}

View File

@ -0,0 +1,36 @@
/*
POST /account/get_generic_shop_item_tracking_info HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (HP ENVY x360 Convertible 13-ay1xxx; win 10.0.22631; en)
X-Session-ID: 1be93222-7934-ec11-810d-c85acf455968
Content-Type: application/json
trace-id: vt0V9iH
user-id: 7bcff223-37a6-4856-a7ba-d23845079b3c
session: 2b393ebf9b28bb875b8a9146ba554a66
x-sky-level-id: 3526133726
Content-Length: 178
*/
//Request
{
"session" : "2b393ebf9b28bb875b8a9146ba554a66",
"shop_name" : "SpellShop_Oasis_Scroll",
"user" : "7bcff223-37a6-4856-a7ba-d23845079b3c",
"user_id" : "7bcff223-37a6-4856-a7ba-d23845079b3c"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Sun, 14 Jul 2024 13:13:51 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 38
*/
//Response
{
"generic_shop_item_tracking_info" : []
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,36 @@
/*
POST /account/get_invites HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: HYwVIZz
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 141
*/
//Request
{
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:15 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 14
*/
//Response
{
"invites" : []
}

View File

@ -0,0 +1,42 @@
/*
POST /account/get_latest_build_version HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: 9qPciv7
x-sky-level-id: 3526133726
Content-Length: 2
*/
//Request
{}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:14:38 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 456
*/
//Response
{
"app_store_uri" : "itms-apps://itunes.apple.com/app/id1462117269",
"country_code" : "BD",
"cs_db_enabled" : false,
"cs_enabled" : true,
"latest_build_version" : 275000,
"maintenance_mode" : false,
"maintenance_msg" : "",
"min_gpu_rating" : 540,
"tos" : {
"pp_url" : "https://legal.thatskygame.com/?p=hc/en/17-sky-children-of-the-light/faq/461-privacy-policy/",
"tos_url" : "https://legal.thatskygame.com/?p=hc/en/17-sky-children-of-the-light/faq/460-eula-terms-of-service/",
"version" : 4
}
}

View File

@ -0,0 +1,245 @@
/*
POST /account/get_level_pickups HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: 6Mlu5uH
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 160
*/
/*
uint32_t fnv1a32(const std::string& data) {
const uint32_t FNV_Offset_Basis_32 = 0x811C9DC5;
const uint32_t FNV_Prime_32 = 0x01000193;
uint32_t h = FNV_Offset_Basis_32;
for (char c : data) {
h = (h ^ static_cast<uint32_t>(c)) * FNV_Prime_32;
}
return h;
}
*/
//Request
{
"level" : 3526133726, //they compress the level name using fnv1a32(const std::string& levelname)
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:27 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 3671
*/
//Response
{
"global_pickups" : [],
"level" : 3526133726,
"pickup_emitters" : [
{
"emitter_name" : "CandlespaceBlizz",
"events" : [
{
"active_duration" : 1439,
"chunk_size_amount" : [ 1, 0, 0 ],
"chunk_size_likelihood" : [ 1.0, 0.0, 0.0 ],
"chunks_per_emit" : 1,
"collected" : 0,
"currency_type" : "wax",
"emit_interval" : 6,
"event_name" : "social_blizz_sm",
"last_chunk_seq" : -1,
"pool_amount" : 1000,
"pool_name" : "social_blizzard",
"preactive_duration" : 0
},
{
"active_duration" : 1439,
"chunk_size_amount" : [ 1, 0, 0 ],
"chunk_size_likelihood" : [ 1.0, 0.0, 0.0 ],
"chunks_per_emit" : 1,
"collected" : 0,
"currency_type" : "wax",
"emit_interval" : 4,
"event_name" : "social_blizz_lg",
"last_chunk_seq" : -1,
"pool_amount" : 1000,
"pool_name" : "social_blizzard",
"preactive_duration" : 0
}
]
},
{
"emitter_name" : "CandlespaceSnowHutFire",
"events" : [
{
"active_duration" : 1439,
"chunk_size_amount" : [ 1, 0, 0 ],
"chunk_size_likelihood" : [ 1.0, 0.0, 0.0 ],
"chunks_per_emit" : 1,
"collected" : 0,
"currency_type" : "wax",
"emit_interval" : 6,
"event_name" : "social_snowhutfire_sm",
"last_chunk_seq" : -1,
"pool_amount" : 1000,
"pool_name" : "social_blizzard",
"preactive_duration" : 0
},
{
"active_duration" : 1439,
"chunk_size_amount" : [ 1, 0, 0 ],
"chunk_size_likelihood" : [ 1.0, 0.0, 0.0 ],
"chunks_per_emit" : 1,
"collected" : 0,
"currency_type" : "wax",
"emit_interval" : 4,
"event_name" : "social_snowhutfire_lg",
"last_chunk_seq" : -1,
"pool_amount" : 1000,
"pool_name" : "social_blizzard",
"preactive_duration" : 0
}
]
},
{
"emitter_name" : "RainbowEvent",
"events" : [
{
"active_duration" : 20160,
"chunk_size_amount" : [ 1, 0, 0 ],
"chunk_size_likelihood" : [ 1.0, 0.0, 0.0 ],
"chunks_per_emit" : 2,
"collected" : 0,
"currency_type" : "wax",
"emit_interval" : 6,
"event_name" : "social_rainbow_on",
"last_chunk_seq" : -1,
"pool_amount" : 500,
"pool_name" : "event_rainbow",
"preactive_duration" : 0
}
]
},
{
"emitter_name" : "SakuraEmitterBlooming",
"events" : [
{
"active_duration" : 4320,
"chunk_size_amount" : [ 1, 0, 0 ],
"chunk_size_likelihood" : [ 1.0, 0.0, 0.0 ],
"chunks_per_emit" : 1,
"collected" : 0,
"currency_type" : "wax",
"emit_interval" : 12,
"event_name" : "global_bloom_sakura_bloom_wax02",
"last_chunk_seq" : -1,
"pool_amount" : 1000,
"pool_name" : "event_bloom_2022",
"preactive_duration" : 0
},
{
"active_duration" : 4320,
"chunk_size_amount" : [ 1, 0, 0 ],
"chunk_size_likelihood" : [ 1.0, 0.0, 0.0 ],
"chunks_per_emit" : 1,
"collected" : 0,
"currency_type" : "wax",
"emit_interval" : 36,
"event_name" : "global_bloom_sakura_bloom_wax01",
"last_chunk_seq" : -1,
"pool_amount" : 1000,
"pool_name" : "event_bloom_2022",
"preactive_duration" : 0
}
]
},
{
"emitter_name" : "SakuraEmitterFalling",
"events" : [
{
"active_duration" : 8640,
"chunk_size_amount" : [ 1, 0, 0 ],
"chunk_size_likelihood" : [ 1.0, 0.0, 0.0 ],
"chunks_per_emit" : 1,
"collected" : 0,
"currency_type" : "wax",
"emit_interval" : 6,
"event_name" : "global_bloom_sakura_fall_wax02",
"last_chunk_seq" : -1,
"pool_amount" : 1000,
"pool_name" : "event_bloom_2022",
"preactive_duration" : 0
},
{
"active_duration" : 4320,
"chunk_size_amount" : [ 1, 0, 0 ],
"chunk_size_likelihood" : [ 1.0, 0.0, 0.0 ],
"chunks_per_emit" : 1,
"collected" : 0,
"currency_type" : "wax",
"emit_interval" : 9,
"event_name" : "global_bloom_sakura_fall_wax01",
"last_chunk_seq" : -1,
"pool_amount" : 1000,
"pool_name" : "event_bloom_2022",
"preactive_duration" : 0
}
]
},
{
"emitter_name" : "SummerBonfireMd",
"events" : [
{
"active_duration" : 20160,
"chunk_size_amount" : [ 1, 0, 0 ],
"chunk_size_likelihood" : [ 1.0, 0.0, 0.0 ],
"chunks_per_emit" : 1,
"collected" : 0,
"currency_type" : "wax",
"emit_interval" : 17,
"event_name" : "global_summer_md",
"last_chunk_seq" : -1,
"pool_amount" : 1000,
"pool_name" : "global_summer_fire",
"preactive_duration" : 0
}
]
},
{
"emitter_name" : "SummerBonfireSm",
"events" : [
{
"active_duration" : 10080,
"chunk_size_amount" : [ 1, 0, 0 ],
"chunk_size_likelihood" : [ 1.0, 0.0, 0.0 ],
"chunks_per_emit" : 1,
"collected" : 0,
"currency_type" : "wax",
"emit_interval" : 24,
"event_name" : "global_summer_sm",
"last_chunk_seq" : -1,
"pool_amount" : 1000,
"pool_name" : "global_summer_fire",
"preactive_duration" : 0
}
]
}
],
"pickups" : []
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,52 @@
/*
POST /account/get_motd HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: NVUIydz
x-sky-level-id: 3526133726
Content-Length: 2
*/
//Request
{}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:14:38 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 558
*/
//Response
{
"motd" : "Not sure what to record with your Shared Memory spell? The Shared Memory shrine in Aviary Village has a prompt to get your ideas flowing!",
"motd_buttons" : [
{
"img" : "Icon_instagram",
"url" : "https://www.instagram.com/thatskygame/?hl=en"
},
{
"img" : "Icon_facebook",
"url" : "https://www.facebook.com/thatskygame/"
},
{
"img" : "Icon_twitter",
"url" : "https://twitter.com/thatskygame?lang=en"
},
{
"img" : "Icon_discord",
"url" : "https://discord.gg/thatskygame"
}
],
"motd_season_start" : 1721026800,
"motd_timestamp" : 1720767600,
"motd_title" : "Shared Memories",
"motd_version" : 137688
}

View File

@ -0,0 +1,37 @@
/*
POST /account/get_online_friends HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: NICXaZN
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 141
*/
//Request
{
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:11 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 21
*/
//Response
{
"online_friends" : []
}

View File

@ -0,0 +1,104 @@
/*
POST /account/get_outfit HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id:
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 141
*/
//Request
{
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:26 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 615
*/
//Response
{
"result" : "ok",
"set_outfit" : {
"arms" : {
"id" : 0,
"mask" : 0,
"pat" : 0,
"tex" : 0
},
"attitude" : "0",
"body" : {
"id" : 3691343236,
"mask" : 0,
"pat" : 0,
"tex" : 0
},
"feet" : {
"id" : 1532093990,
"mask" : 0,
"pat" : 0,
"tex" : 0
},
"hair" : {
"id" : 1229053584,
"mask" : 0,
"pat" : 0,
"tex" : 0
},
"hat" : {
"id" : 1470462579,
"mask" : 0,
"pat" : 0,
"tex" : 0
},
"height" : 0.3205564055560303,
"horn" : {
"id" : 3680499229,
"mask" : 0,
"pat" : 0,
"tex" : 0
},
"mask" : {
"id" : 3663390882,
"mask" : 0,
"pat" : 0,
"tex" : 0
},
"neck" : {
"id" : 3800884691,
"mask" : 0,
"pat" : 0,
"tex" : 0
},
"prop" : {
"id" : 2035109393,
"mask" : 0,
"pat" : 0,
"tex" : 0
},
"scale" : 0.008167967321492012,
"seed" : 8016,
"voice" : 0,
"wing" : {
"id" : 2245279351,
"mask" : 0,
"pat" : 0,
"tex" : 0
}
}
}

View File

@ -0,0 +1,39 @@
/*
POST /account/get_pending_messages HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: RoTvs3v
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 167
*/
//Request
{
"exclude_free_gifts" : true,
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:18 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 48
*/
//Response
{
"set_recvd_messages" : [],
"set_sent_messages" : []
}

View File

@ -0,0 +1,39 @@
/*
POST /account/get_player_info HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: UV5m9mO
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 1509719447
Content-Length: 189
*/
//Request
{
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"target" : "5c5d306b-8694-47e8-b4d5-002cc4205378",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:43 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 38
*/
//Response
{
"result" : "ok",
"serendipity_types" : []
}

View File

@ -0,0 +1,41 @@
/*
POST /account/get_rank HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: CkwrBDA
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 141
*/
//Request
{
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:11 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 66
*/
//Response
{
"set_rank" : {
"is_beginner" : true,
"is_shepherd" : false,
"social" : 0.0
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,105 @@
/*
POST /account/get_remote_outfit HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: SBr4T0V
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 1509719447
Content-Length: 189
*/
//Request
{
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"target" : "5c5d306b-8694-47e8-b4d5-002cc4205378",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:43 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 645
*/
//Response
{
"get_remote_outfit" : {
"arms" : {
"id" : 0,
"mask" : 0,
"pat" : 0,
"tex" : 0
},
"attitude" : "0",
"body" : {
"id" : 1394323104,
"mask" : 0,
"pat" : 0,
"tex" : 0
},
"feet" : {
"id" : 1532093990,
"mask" : 0,
"pat" : 0,
"tex" : 0
},
"hair" : {
"id" : 2704502947,
"mask" : 0,
"pat" : 0,
"tex" : 0
},
"hat" : {
"id" : 1470462579,
"mask" : 0,
"pat" : 0,
"tex" : 0
},
"height" : 1.259276498516485,
"horn" : {
"id" : 3886634356,
"mask" : 0,
"pat" : 0,
"tex" : 0
},
"mask" : {
"id" : 4267756678,
"mask" : 0,
"pat" : 0,
"tex" : 0
},
"neck" : {
"id" : 637137758,
"mask" : 0,
"pat" : 0,
"tex" : 0
},
"prop" : {
"id" : 772545524,
"mask" : 0,
"pat" : 0,
"tex" : 0
},
"scale" : 0.1086676991168552,
"seed" : 42080,
"voice" : 0,
"wing" : {
"id" : 441553228,
"mask" : 0,
"pat" : 0,
"tex" : 0
}
},
"result" : "ok",
"serendipity_types" : []
}

View File

@ -0,0 +1,88 @@
/*
POST /account/get_season_quests HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: MdvRVTv
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 141
*/
//Request
{
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:09 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 987
*/
//Response
{
"has_season_quests_rewards" : [
{
"daily_quest_def_id" : "visit_rainbow_prairie",
"date" : "2024-07-12",
"rewarded" : false
},
{
"daily_quest_def_id" : "visit_prairie_cozycave",
"date" : "2024-07-12",
"rewarded" : false
},
{
"daily_quest_def_id" : "lightseeker_prairie",
"date" : "2024-07-12",
"rewarded" : false
},
{
"daily_quest_def_id" : "world_quest_prairie_thumbsup",
"date" : "2024-07-12",
"rewarded" : false
}
],
"season_quests" : [
{
"activated" : false,
"daily_quest_def_id" : "visit_rainbow_prairie",
"date" : "2024-07-12",
"start_value" : -1.0,
"stat_type" : "visit_rainbow_prairie_count"
},
{
"activated" : false,
"daily_quest_def_id" : "visit_prairie_cozycave",
"date" : "2024-07-12",
"start_value" : -1.0,
"stat_type" : "visit_prairie_cozycave_count"
},
{
"activated" : false,
"daily_quest_def_id" : "lightseeker_prairie",
"date" : "2024-07-12",
"start_value" : -1.0,
"stat_type" : "lightseeker_prairie_count"
},
{
"activated" : false,
"daily_quest_def_id" : "world_quest_prairie_thumbsup",
"date" : "2024-07-12",
"start_value" : -1.0,
"stat_type" : "world_quest_prairie_thumbsup_count"
}
]
}

View File

@ -0,0 +1,721 @@
/*
POST /account/get_shop HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: 0jdBJ3q
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 141
*/
//Request
{
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:16 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 8777
*/
//Response
{
"get_shop" : [
[
{
"currency_type" : "heart",
"listed" : true,
"name" : "dayhub_body",
"unlock_cost" : 0,
"unlock_dep" : 0,
"unlockid" : 3691343236,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "dayhub_body",
"unlock_cost" : 1,
"unlock_dep" : 0,
"unlockid" : 4070169080,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "dayhub_body",
"unlock_cost" : 2,
"unlock_dep" : 0,
"unlockid" : 556395364,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "dayhub_hair",
"unlock_cost" : 0,
"unlock_dep" : 0,
"unlockid" : 1229053584,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "dayhub_hair",
"unlock_cost" : 3,
"unlock_dep" : 0,
"unlockid" : 2802448856,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "dayhub_hair",
"unlock_cost" : 2,
"unlock_dep" : 0,
"unlockid" : 651777506,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "dayhub_hair",
"unlock_cost" : 1,
"unlock_dep" : 0,
"unlockid" : 310226317,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "dayhub_mask",
"unlock_cost" : 0,
"unlock_dep" : 0,
"unlockid" : 3663390882,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "dayhub_mask",
"unlock_cost" : 1,
"unlock_dep" : 0,
"unlockid" : 1600525874,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "dayhub_mask",
"unlock_cost" : 3,
"unlock_dep" : 0,
"unlockid" : 3207378178,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "dayhub_wing",
"unlock_cost" : 0,
"unlock_dep" : 0,
"unlockid" : 2245279351,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "dayhub_wing",
"unlock_cost" : 4,
"unlock_dep" : 0,
"unlockid" : 4290017146,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "dusk_gyard_hair_1",
"unlock_cost" : 6,
"unlock_dep" : 0,
"unlockid" : 2666640712,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "dusk_gyard_hair_1",
"unlock_cost" : 2,
"unlock_dep" : 0,
"unlockid" : 351601302,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "dusk_gyard_hair_2",
"unlock_cost" : 10,
"unlock_dep" : 0,
"unlockid" : 1960678833,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "dusk_gyard_wing",
"unlock_cost" : 20,
"unlock_dep" : 0,
"unlockid" : 3466800656,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "dusk_hair",
"unlock_cost" : 4,
"unlock_dep" : 0,
"unlockid" : 1472657881,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "dusk_hair",
"unlock_cost" : 3,
"unlock_dep" : 0,
"unlockid" : 3668577427,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "dusk_mask",
"unlock_cost" : 4,
"unlock_dep" : 0,
"unlockid" : 3659135953,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "dusk_wing",
"unlock_cost" : 7,
"unlock_dep" : 0,
"unlockid" : 1676224199,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "duskend_hair",
"unlock_cost" : 8,
"unlock_dep" : 0,
"unlockid" : 4055513070,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "home_prop",
"unlock_cost" : 3,
"unlock_dep" : 0,
"unlockid" : 1064146256,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "home_prop",
"unlock_cost" : 6,
"unlock_dep" : 0,
"unlockid" : 2003040587,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "home_prop",
"unlock_cost" : 18,
"unlock_dep" : 0,
"unlockid" : 3280753494,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "home_prop",
"unlock_cost" : 0,
"unlock_dep" : 0,
"unlockid" : 2035109393,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "home_prop",
"unlock_cost" : 11,
"unlock_dep" : 0,
"unlockid" : 1889256860,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "home_prop",
"unlock_cost" : 27,
"unlock_dep" : 0,
"unlockid" : 992885953,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "home_prop",
"unlock_cost" : 1,
"unlock_dep" : 0,
"unlockid" : 1021011859,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "night_body",
"unlock_cost" : 4,
"unlock_dep" : 0,
"unlockid" : 4086661700,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "night_hair",
"unlock_cost" : 5,
"unlock_dep" : 0,
"unlockid" : 158418233,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "night_hair",
"unlock_cost" : 4,
"unlock_dep" : 0,
"unlockid" : 392918653,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "night_mask",
"unlock_cost" : 5,
"unlock_dep" : 0,
"unlockid" : 1929978494,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "night_wing",
"unlock_cost" : 8,
"unlock_dep" : 0,
"unlockid" : 1611389272,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "nightend_hair",
"unlock_cost" : 8,
"unlock_dep" : 0,
"unlockid" : 1740771042,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "nightend_mask",
"unlock_cost" : 8,
"unlock_dep" : 0,
"unlockid" : 4267756678,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "nightend_wing",
"unlock_cost" : 10,
"unlock_dep" : 0,
"unlockid" : 4009091214,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "orbitdawn_hair",
"unlock_cost" : 2,
"unlock_dep" : 0,
"unlockid" : 416680174,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "orbitday_hair",
"unlock_cost" : 2,
"unlock_dep" : 0,
"unlockid" : 2432602294,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "orbitdusk_hair",
"unlock_cost" : 2,
"unlock_dep" : 0,
"unlockid" : 2681369749,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "orbitnight_hair",
"unlock_cost" : 2,
"unlock_dep" : 0,
"unlockid" : 3721236258,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "orbitrain_hair",
"unlock_cost" : 2,
"unlock_dep" : 0,
"unlockid" : 1078517906,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "orbitsunset_hair",
"unlock_cost" : 2,
"unlock_dep" : 0,
"unlockid" : 777821397,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "orbitsunset_hair",
"unlock_cost" : 2,
"unlock_dep" : 0,
"unlockid" : 3381405437,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "rain_body",
"unlock_cost" : 3,
"unlock_dep" : 0,
"unlockid" : 739857211,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "rain_hair",
"unlock_cost" : 2,
"unlock_dep" : 0,
"unlockid" : 2784461785,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "rain_hair",
"unlock_cost" : 4,
"unlock_dep" : 0,
"unlockid" : 21382025,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "rain_hair",
"unlock_cost" : 3,
"unlock_dep" : 0,
"unlockid" : 189805609,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "rain_mask",
"unlock_cost" : 2,
"unlock_dep" : 0,
"unlockid" : 252652358,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "rainend_body",
"unlock_cost" : 4,
"unlock_dep" : 0,
"unlockid" : 2432891829,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "rainend_hair",
"unlock_cost" : 8,
"unlock_dep" : 0,
"unlockid" : 766797080,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "rainend_mask",
"unlock_cost" : 8,
"unlock_dep" : 0,
"unlockid" : 2954671753,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "rainend_wing",
"unlock_cost" : 6,
"unlock_dep" : 0,
"unlockid" : 3167707894,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "sunset_body",
"unlock_cost" : 4,
"unlock_dep" : 0,
"unlockid" : 4145832489,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "sunset_hair",
"unlock_cost" : 3,
"unlock_dep" : 0,
"unlockid" : 3075031305,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "sunset_hair",
"unlock_cost" : 2,
"unlock_dep" : 0,
"unlockid" : 1091766677,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "sunset_hair",
"unlock_cost" : 4,
"unlock_dep" : 0,
"unlockid" : 3437606455,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "sunset_mask",
"unlock_cost" : 3,
"unlock_dep" : 0,
"unlockid" : 3117037165,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "sunset_mask",
"unlock_cost" : 3,
"unlock_dep" : 0,
"unlockid" : 3066704308,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "sunset_wing",
"unlock_cost" : 5,
"unlock_dep" : 0,
"unlockid" : 2038455273,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "sunsetend_body",
"unlock_cost" : 4,
"unlock_dep" : 0,
"unlockid" : 971855908,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "sunsetend_hair",
"unlock_cost" : 8,
"unlock_dep" : 0,
"unlockid" : 1966947567,
"visual_dep" : 0,
"x" : 0,
"y" : 0
},
{
"currency_type" : "heart",
"listed" : true,
"name" : "sunsetend_mask",
"unlock_cost" : 6,
"unlock_dep" : 0,
"unlockid" : 685288461,
"visual_dep" : 0,
"x" : 0,
"y" : 0
}
]
]
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,37 @@
/*
POST /account/get_surveys HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: jXbF0HD
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 141
*/
//Request
{
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:13 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 14
*/
//Response
{
"surveys" : []
}

View File

@ -0,0 +1,68 @@
/*
POST /account/get_unlocks HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: J1RBNmv
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 141
*/
//Request
{
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:16 GMT
Content-Type: application/json; charset=utf-8
Connection: keep-alive
Content-Length: 469
*/
//Response
{
"unlocks" : [
{
"ack" : false,
"created_at" : 1717265536,
"name" : "ap06unlock_ap20_fetch_01",
"type" : "spiritshop"
},
{
"ack" : false,
"created_at" : 1717265799,
"name" : "ap06unlock_ap20_fetch_03",
"type" : "spiritshop"
},
{
"ack" : false,
"created_at" : 1717266303,
"name" : "teleport_to_questap22",
"type" : "spiritshop"
},
{
"ack" : false,
"created_at" : 1717267930,
"name" : "emote_upgrade_point_01",
"type" : "spiritshop"
},
{
"ack" : false,
"created_at" : 1717267947,
"name" : "CharSkyKid_Hair_TopSharp",
"type" : "spiritshop"
}
]
}

View File

@ -0,0 +1,111 @@
/*
POST /account/get_vars HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: wXtcauG
x-sky-level-id: 3526133726
Content-Length: 2
*/
//Request
{}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:14:38 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 2207
*/
//Response
{
"vars" : {
"ab_mainstreet_balance" : 0,
"ab_mainstreet_enabled" : 1,
"afk_time" : 120,
"analytics_charge_interval" : 2,
"analytics_ping_distance" : 10,
"analytics_ping_interval" : 30,
"app_review_orbit" : 1,
"app_review_rain" : 1,
"aurora_apple_music_url" : "https://apple.co/Sky-Concert-In-The-Light",
"beta_mode" : 0,
"c_max_friend_pages" : 6,
"candle_forge_cost" : 150,
"carl" : "06609880-a195-44c1-81f9-7958e0199efa",
"chat_server_enabled" : 1,
"collectible_dup_interval_sec" : 7200,
"collectible_dup_wax_reward" : 0,
"dailyquestgiver" : "472f7381-4a46-4c05-84d8-66a777556066",
"diving_time" : 60,
"enable_afk_wax_pickups" : 0,
"enable_buddy_requests" : 1,
"enable_constellation_revisions" : 1,
"enable_diminishing_returns" : 1,
"enable_facebook_shrine" : 1,
"enable_feed_comments" : 1,
"enable_feed_comments_toggle" : 1,
"enable_feed_curated_refresh" : 1,
"enable_feed_follow" : 1,
"enable_feed_new_ui" : 1,
"enable_feed_peek_over_shoulder" : 1,
"enable_feed_superlike" : 1,
"enable_inbox" : 1,
"enable_instagram_shrine" : 1,
"enable_joint_damage_system" : 1,
"enable_map_menu" : 1,
"enable_map_shrines" : 1,
"enable_placeables_in_memory" : 1,
"enable_recording_candle" : 1,
"enable_resource_sync" : 1,
"enable_stage" : 1,
"enable_stage_placement_count" : 1,
"enable_stage_prairie_hub" : 1,
"enable_stage_tgc_office" : 1,
"enable_stage_volume_mode" : 1,
"enable_star_nfc" : 1,
"enable_storm_end_death_march" : 1,
"enable_superlike_multi_reward" : 1,
"enable_tgui_chatlog" : 1,
"enable_tgui_statecounter" : 1,
"enable_twitter_shrine" : 1,
"enable_web_remote" : 1,
"enable_web_remote_other" : 1,
"enable_web_remote_ps4" : 1,
"enable_web_remote_switch" : 1,
"feed_translation_enabled" : 1,
"flightmode_revisions_controls" : 1,
"flightmode_revisions_ui" : 1,
"full_afk_time" : 600,
"gift_heart_wax_count" : 5,
"gift_min_level_required" : "RainEnd",
"gift_wax_count" : 5,
"heart_forge_cost" : 300,
"level_storm" : 1,
"metaloop" : 1,
"minimum_gpu_rating" : 540,
"onboarding_mainstreet_00" : 1,
"past_collectibles_enabled" : 1,
"pickup_interval_sec" : 79200,
"prestige_forge_cost" : 4,
"push_notifications_enabled" : 1,
"season_candle_forge_cost" : 12,
"serendipity_match" : 1,
"shared_space_grid_resolution" : 6,
"shop_enabled" : 1,
"snorkel_diving_time_add" : 15,
"stage_claim_time" : 300,
"system_achievements" : 1,
"test_dawn_revamp_01" : 1,
"translation_enabled" : 1,
"websocket_enabled" : 1,
"welcome" : "8d1a1882-cfb8-4c00-a134-daa449388799"
}
}

View File

@ -0,0 +1,242 @@
/*
POST /account/get_video_defs HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: nTwM42Q
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 141
*/
//Request
{
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:25 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 6819
*/
//Response
{
"video_defs" : [
{
"duration" : 672,
"has_translations" : false,
"location" : "https://video.cdn.thatgamecompany.com/encoded/skyfest24/gallery2/DOS5_ArtGalleryInGame_K_240424/DOS5_ArtGalleryInGame_K_240424_tgc.m3u8",
"name" : "art_of_sky_gallery",
"subtitle_base" : ""
},
{
"duration" : 47,
"has_translations" : false,
"location" : "https://video.cdn.thatgamecompany.com/encoded/skyfest24/ArtBookSigning_VLS_47s_EN_2406/ArtBookSigning_VLS_47s_EN_2406_tgc.m3u8",
"name" : "artbook_signing",
"subtitle_base" : ""
},
{
"duration" : 47,
"has_translations" : false,
"location" : "https://video.cdn.thatgamecompany.com/encoded/skyfest24/SKYF_CinemaTrailer-Socials_VLS_47s_EN_2406/SKYF_CinemaTrailer-Socials_VLS_47s_EN_2406_tgc.m3u8",
"name" : "cinema_trailer",
"subtitle_base" : ""
},
{
"duration" : 210,
"has_translations" : false,
"location" : "https://video.cdn.thatgamecompany.com/encoded/skyfest24/Cocowoll_SkyFest_Animation/Cocowoll_SkyFest_Animation_tgc.m3u8",
"name" : "cocowoll_skyfest_animation",
"subtitle_base" : ""
},
{
"duration" : 61,
"has_translations" : false,
"location" : "https://video.cdn.thatgamecompany.com/encoded/skyfest24/DOS5_Trailer_Socials_VLS_60s_EN_2406/DOS5_Trailer_Socials_VLS_60s_EN_2406_tgc.m3u8",
"name" : "fifth_anniversary_trailer",
"subtitle_base" : ""
},
{
"duration" : 492,
"has_translations" : false,
"location" : "https://video.cdn.thatgamecompany.com/encoded/skyfest24/gallery2/DOS5_HistoryOfSkyInGame_K_240502/DOS5_HistoryOfSkyInGame_K_240502_tgc.m3u8",
"name" : "history_of_sky_gallery",
"subtitle_base" : ""
},
{
"duration" : 3460,
"has_translations" : true,
"location" : "https://video.cdn.thatgamecompany.com/encoded/skyfest24/DOS5_GDC-Jenova_VLS_58m_EN_240618/DOS5_GDC-Jenova_VLS_58m_EN_240618.m3u8",
"name" : "jenova_dev_talk",
"subtitle_base" : "https://video.cdn.thatgamecompany.com/vtt-sf24/Jenova_Dev_Talk/DOS5_GDC-Jenova_VLS_58m_EN_240516.mp4.vtt"
},
{
"duration" : 2347,
"has_translations" : true,
"location" : "https://video.cdn.thatgamecompany.com/encoded/skyfest24/DOS5_InGame-Jenova-KeyN_VLS_39m7s_EN_240708c/DOS5_InGame-Jenova-KeyN_VLS_39m7s_EN_240708c_tgc.m3u8",
"name" : "jenova_keynote",
"subtitle_base" : "https://video.cdn.thatgamecompany.com/vtt-sf24/Jenova_Keynote_Global/Jenova_Keynote_Global.mp4.vtt"
},
{
"duration" : 3235,
"has_translations" : true,
"location" : "https://video.cdn.thatgamecompany.com/encoded/skyfest24/DOS5_GDC-Nic_VLS_54m_EN_240521/DOS5_GDC-Nic_VLS_54m_EN_240521_tgc.m3u8",
"name" : "nic_dev_talk",
"subtitle_base" : "https://video.cdn.thatgamecompany.com/vtt-sf24/Nic_Dev_Talk/DOS5_GDC-Nic_VLS_54m_EN_240521.mp4.vtt"
},
{
"duration" : 105,
"has_translations" : true,
"location" : "https://video.cdn.thatgamecompany.com/encoded/skyfest24/Recrui_Amelia/Recrui_Amelia_tgc.m3u8",
"name" : "recruitment_amelia",
"subtitle_base" : "https://video.cdn.thatgamecompany.com/vtt-sf24/Recruitment_Videos/Amelia_Razinha/Recrui_Amelia_Razinha.mp4.vtt"
},
{
"duration" : 83,
"has_translations" : true,
"location" : "https://video.cdn.thatgamecompany.com/encoded/skyfest24/Recrui_Dylan/Recrui_Dylan_tgc.m3u8",
"name" : "recruitment_dylan",
"subtitle_base" : "https://video.cdn.thatgamecompany.com/vtt-sf24/Recruitment_Videos/Dylan_Faust/Recrui_Dylan.mp4.vtt"
},
{
"duration" : 113,
"has_translations" : true,
"location" : "https://video.cdn.thatgamecompany.com/encoded/skyfest24/Recrui_Jeremy/Recrui_Jeremy_tgc.m3u8",
"name" : "recruitment_jeremy",
"subtitle_base" : "https://video.cdn.thatgamecompany.com/vtt-sf24/Recruitment_Videos/Jeremy_Simpson/Recrui_Jeremy.mp4.vtt"
},
{
"duration" : 95,
"has_translations" : true,
"location" : "https://video.cdn.thatgamecompany.com/encoded/skyfest24/Recrui_Kyle_0202/Recrui_Kyle_0202_tgc.m3u8",
"name" : "recruitment_kyle",
"subtitle_base" : "https://video.cdn.thatgamecompany.com/vtt-sf24/Recruitment_Videos/Kyle_Holdwick/Recrui_Kyle_0202.mp4.vtt"
},
{
"duration" : 93,
"has_translations" : true,
"location" : "https://video.cdn.thatgamecompany.com/encoded/skyfest24/Recrui_Nic_0926/Recrui_Nic_0926_tgc.m3u8",
"name" : "recruitment_nick",
"subtitle_base" : "https://video.cdn.thatgamecompany.com/vtt-sf24/Recruitment_Videos/Nic_Oueijan/Recrui_Nic_0926.mp4.vtt"
},
{
"duration" : 93,
"has_translations" : true,
"location" : "https://video.cdn.thatgamecompany.com/encoded/skyfest24/Recrui_Reika_0214/Recrui_Reika_0214_tgc.m3u8",
"name" : "recruitment_reika",
"subtitle_base" : "https://video.cdn.thatgamecompany.com/vtt-sf24/Recruitment_Videos/Reika_Yoshino/Recrui_Reika_0214.mp4.vtt"
},
{
"duration" : 115,
"has_translations" : true,
"location" : "https://video.cdn.thatgamecompany.com/encoded/skyfest24/Recrui_Sam_0609/Recrui_Sam_0609_tgc.m3u8",
"name" : "recruitment_sam",
"subtitle_base" : "https://video.cdn.thatgamecompany.com/vtt-sf24/Recruitment_Videos/Sam_McGrath/Recrui_Sam_0609.mp4.vtt"
},
{
"duration" : 96,
"has_translations" : true,
"location" : "https://video.cdn.thatgamecompany.com/encoded/skyfest24/Recrui_Samantha_0216/Recrui_Samantha_0216_tgc.m3u8",
"name" : "recruitment_samantha",
"subtitle_base" : "https://video.cdn.thatgamecompany.com/vtt-sf24/Recruitment_Videos/Samantha_Cruse/Recrui_Samantha_0216.mp4.vtt"
},
{
"duration" : 3027,
"has_translations" : true,
"location" : "https://video.cdn.thatgamecompany.com/encoded/skyfest24/DOS5_GDC-Sam_VLS_50m_EN_240516/DOS5_GDC-Sam_VLS_50m_EN_240516_tgc.m3u8",
"name" : "sam_dev_talk",
"subtitle_base" : "https://video.cdn.thatgamecompany.com/vtt-sf24/Sam_Dev_Talk/Sam_GDC_Talk.vtt"
},
{
"duration" : 1870,
"has_translations" : true,
"location" : "https://video.cdn.thatgamecompany.com/encoded/skyfest24/DOS5_InGame-YuiKeyN_VLS_31m12s_240524/DOS5_InGame-YuiKeyN_VLS_31m12s_240524_tgc.m3u8",
"name" : "yui_dev_talk",
"subtitle_base" : "https://video.cdn.thatgamecompany.com/vtt-sf24/Yui_Art_Talk/DOS5_InGame-YuiKeyN_VLS_31m12s_240524.mp4.vtt"
}
],
"video_schedule" : [
{
"channel" : "cinema",
"event" : "skyfest_developer_jenova",
"gap_seconds" : 30,
"loop" : false,
"playlist" : [ "jenova_dev_talk" ],
"postshow_seconds" : 10,
"preshow_seconds" : 120,
"silence_please" : true
},
{
"channel" : "cinema",
"event" : "skyfest_developer_nicolas",
"gap_seconds" : 30,
"loop" : false,
"playlist" : [ "fifth_anniversary_trailer", "nic_dev_talk" ],
"postshow_seconds" : 10,
"preshow_seconds" : 120,
"silence_please" : true
},
{
"channel" : "cinema",
"event" : "skyfest_developer_sam",
"gap_seconds" : 30,
"loop" : false,
"playlist" : [ "cinema_trailer", "sam_dev_talk" ],
"postshow_seconds" : 10,
"preshow_seconds" : 120,
"silence_please" : true
},
{
"channel" : "cinema",
"event" : "skyfest_developer_yui",
"gap_seconds" : 30,
"loop" : false,
"playlist" : [ "artbook_signing", "yui_dev_talk" ],
"postshow_seconds" : 10,
"preshow_seconds" : 120,
"silence_please" : true
},
{
"channel" : "cinema",
"event" : "skyfest_keynote",
"gap_seconds" : 30,
"loop" : false,
"playlist" : [ "cocowoll_skyfest_animation", "jenova_keynote" ],
"postshow_seconds" : 10,
"preshow_seconds" : 120,
"silence_please" : true
},
{
"channel" : "tgc_office",
"event" : "global_skyfest",
"gap_seconds" : 15,
"loop" : true,
"playlist" : [
"recruitment_kyle",
"recruitment_reika",
"recruitment_nick",
"recruitment_sam",
"recruitment_amelia",
"recruitment_jeremy",
"recruitment_samantha",
"recruitment_dylan"
],
"postshow_seconds" : 10,
"preshow_seconds" : 10,
"silence_please" : false
}
]
}

2032
account/account_iaplist.json Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,147 @@
/*
POST /account/purchase_generic_shop_item HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (HP ENVY x360 Convertible 13-ay1xxx; win 10.0.22631; en)
X-Session-ID: 1be93222-7934-ec11-810d-c85acf455968
Content-Type: application/json
trace-id: 7gON0MH
user-id: 7bcff223-37a6-4856-a7ba-d23845079b3c
session: 2b393ebf9b28bb875b8a9146ba554a66
x-sky-level-id: 3526133726
Content-Length: 213
*/
//Request
{
"cost" : 1,
"currency_count" : 24,
"currency_type" : "prestige",
"id" : 4165070576,
"session" : "2b393ebf9b28bb875b8a9146ba554a66",
"user" : "7bcff223-37a6-4856-a7ba-d23845079b3c",
"user_id" : "7bcff223-37a6-4856-a7ba-d23845079b3c"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Sun, 14 Jul 2024 13:14:01 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 1382
*/
//Response
{
"currency" : {
"candles" : 55,
"event_candle_days_of_sky" : 2,
"heart" : 90,
"heart_wax" : 100,
"prestige" : 23,
"prestige_vip" : 59,
"prestige_wax" : 3,
"season_candle" : 0,
"season_candle_22" : 10,
"season_wax" : 0,
"season_wax_22" : 6,
"vip" : 20,
"wax" : 42
},
"generic_shop_item_tracking_info" : [
{
"count" : 1,
"id" : 4165070576,
"ttl" : 63958
}
],
"generic_shop_purchase" : "success",
"get_consumables" : [
{
"consumable_id" : 50358065,
"cooldown_until" : 0,
"quantity" : 1
},
{
"consumable_id" : 75558978,
"cooldown_until" : 0,
"quantity" : 2
},
{
"consumable_id" : 561567149,
"cooldown_until" : 0,
"quantity" : 2
},
{
"consumable_id" : 701255829,
"cooldown_until" : 0,
"quantity" : 1
},
{
"consumable_id" : 728556201,
"cooldown_until" : 0,
"quantity" : 2
},
{
"consumable_id" : 872420107,
"cooldown_until" : 0,
"quantity" : 2
},
{
"consumable_id" : 1087669517,
"cooldown_until" : 0,
"quantity" : 2
},
{
"consumable_id" : 1115226250,
"cooldown_until" : 0,
"quantity" : 2
},
{
"consumable_id" : 1309459241,
"cooldown_until" : 0,
"quantity" : 2
},
{
"consumable_id" : 1482655023,
"cooldown_until" : 0,
"quantity" : 2
},
{
"consumable_id" : 1659639836,
"cooldown_until" : 0,
"quantity" : 2
},
{
"consumable_id" : 2704677687,
"cooldown_until" : 0,
"quantity" : 2
},
{
"consumable_id" : 3322375825,
"cooldown_until" : 0,
"quantity" : 2
},
{
"consumable_id" : 3379219961,
"cooldown_until" : 0,
"quantity" : 1
},
{
"consumable_id" : 3773476314,
"cooldown_until" : 0,
"quantity" : 2
},
{
"consumable_id" : 4050329182,
"cooldown_until" : 0,
"quantity" : 2
},
{
"consumable_id" : 4099037957,
"cooldown_until" : 0,
"quantity" : 2
}
]
}

View File

@ -0,0 +1,138 @@
/*
POST /account/purchase_spirit_shop_item HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: J4iY8BZ
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 1649439303
Content-Length: 232
*/
//Request
{
"cs_end" : false,
"item_name" : "relationship_ability_ap06unlock_ap20_hug", //can also be ap06unlock_ap20_fetch_04/emote_upgrade_butterfly_01/lootbox_common_19
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"spirit_id" : 1582353854,
"unlock_id" : 2269148129,
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:20:13 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 271
*/
//Response
{
"currency" : { //deducting the currency
"candles" : 11,
"prestige" : 7,
"prestige_vip" : 7,
"wax" : 91
},
"result" : "ok",
"update_unlocks" : [ //updating the currency
{
"ack" : false,
"created_at" : 0,
"name" : "relationship_ability_ap06unlock_ap20_hug",
"type" : "spiritshop"
}
]
/*
But depending on what the item is there is also updating the collectibles when using emote_upgrade_butterfly_01 or giving user a lootbox when lootbox_common_19
"collectibles" : [
{
"candle_space" : false,
"carrying" : false,
"id" : "butterfly",
"level" : 2,
"permanent_level" : 1,
"used" : false
},
{
"candle_space" : false,
"carrying" : false,
"id" : "cape",
"level" : 2,
"permanent_level" : 1,
"used" : false
},
{
"candle_space" : true,
"carrying" : false,
"id" : "flame",
"level" : 1,
"permanent_level" : 0,
"used" : true
},
{
"candle_space" : true,
"carrying" : false,
"id" : "home",
"level" : 1,
"permanent_level" : 0,
"used" : true
},
{
"candle_space" : true,
"carrying" : false,
"id" : "normal",
"level" : 1,
"permanent_level" : 0,
"used" : true
},
{
"candle_space" : false,
"carrying" : false,
"id" : "point",
"level" : 2,
"permanent_level" : 1,
"used" : true
},
{
"candle_space" : true,
"carrying" : false,
"id" : "sit",
"level" : 1,
"permanent_level" : 0,
"used" : true
},
{
"candle_space" : true,
"carrying" : false,
"id" : "skykid",
"level" : 1,
"permanent_level" : 0,
"used" : true
}
],
and for lootbox
"get_lootboxes" : [
{
"consumable_type" : "energy",
"count" : 1,
"currency_type" : "",
"lootbox_id" : "lootbox_common_19",
"redeemed" : false
}
],
*/
}

View File

@ -0,0 +1,62 @@
/*
POST /account/season_finalize HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: GfYxI
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 1509719447
Content-Length: 141
*/
//Request
{
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:31 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 358
*/
//Response
{
"currency" : {
"candles" : 5,
"wax" : 146
},
"result" : [ "season_22" ],
"update_forge_rates" : [
{
"current_level" : 4,
"current_tier" : 26,
"enabled" : true,
"level_completion" : 0.0,
"level_tier_count" : 5,
"level_tier_index" : 0,
"reset_acknowledged" : true,
"source_type" : "wax",
"tier_completion" : 0.0
}
],
"update_unlocks" : [
{
"ack" : false,
"created_at" : 0,
"name" : "season_finish_22",
"type" : "season"
}
]
}

View File

@ -0,0 +1,152 @@
/*
POST /account/set_achievement_stats HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: kdJ2xSF
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 249
*/
//Request
{
"achievement_stats" : [
{
"type" : "cape_change_count",
"value" : 3
},
{
"type" : "highest_carry_stack_count",
"value" : 1
}
],
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:27 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 1404
*/
//Response
{
"achievement_stats" : [
{
"type" : "avatar_charge_count",
"updated" : 1717266678,
"value" : 19551.6760
},
{
"type" : "cape_change_count",
"updated" : 1720818987,
"value" : 3
},
{
"type" : "collectible_count",
"updated" : 1717267486,
"value" : 1
},
{
"type" : "dawn_collectibles_collected_count",
"updated" : 1717267486,
"value" : 1
},
{
"type" : "emotes_collected_count",
"updated" : 1717267200,
"value" : 2
},
{
"type" : "emotes_used_count",
"updated" : 1717267930,
"value" : 2
},
{
"type" : "engine_activated_count",
"updated" : 1717267579,
"value" : 3
},
{
"type" : "fly_continuously_1_minute_count",
"updated" : 1717264528,
"value" : 1
},
{
"type" : "fly_continuously_2_minute_count",
"updated" : 1717264588,
"value" : 1
},
{
"type" : "forged_candle_count",
"updated" : 1717266401,
"value" : 2
},
{
"type" : "hair_change_count",
"updated" : 1717264975,
"value" : 3
},
{
"type" : "highest_cape_level",
"updated" : 1717267529,
"value" : 2
},
{
"type" : "highest_carry_stack_count",
"updated" : 1720818987,
"value" : 1
},
{
"type" : "highest_flight_altitude",
"updated" : 1717267574,
"value" : 83.65780599999999
},
{
"type" : "join_1_player_count",
"updated" : 1717266249,
"value" : 3
},
{
"type" : "join_2_players_count",
"updated" : 1717266264,
"value" : 2
},
{
"type" : "light_candle_count",
"updated" : 1717267648,
"value" : 487
},
{
"type" : "non_unique_hand_hold_count",
"updated" : 1717266132,
"value" : 4
},
{
"type" : "non_unique_high_five_count",
"updated" : 1717264975,
"value" : 1
},
{
"type" : "visit_dawn_temple_exit",
"updated" : 1717268055,
"value" : 1
},
{
"type" : "wax_pickup_count",
"updated" : 1717266647,
"value" : 136
}
]
}

View File

@ -0,0 +1,99 @@
/*
POST /account/set_checkpoint HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: KMuacuj
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 1649439303
Content-Length: 342
*/
//Request
{
"bst_id" : 0,
"level_hash" : 52532,
"level_id" : 1649439303,
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"states" : [
false,
false,
false,
false,
false,
false,
false,
false,
false,
false,
false,
false,
false,
false,
false,
false,
false,
false,
false,
false,
false,
false,
false
],
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:19:12 GMT
Content-Type: application/json; charset=utf-8
Connection: keep-alive
Content-Length: 300
*/
//Response
{
"checkpoints" : [
{
"arc_order" : 1,
"bst_id" : 0,
"is_furthest" : true,
"level_hash" : 52532,
"level_id" : 1649439303,
"states" : [
false,
false,
false,
false,
false,
false,
false,
false,
false,
false,
false,
false,
false,
false,
false,
false,
false,
false,
false,
false,
false,
false,
false
],
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
]
}

View File

@ -0,0 +1,37 @@
/*
POST /account/set_joinable HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: CyLJy8Z
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 1509719447
Content-Length: 157
*/
//Request
{
"joinable" : true,
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:30 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 17
*/
//Response
{
"joinable" : true
}

View File

@ -0,0 +1,171 @@
/*
POST /account/set_outfit HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: KIKdBCg
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 1509719447
Content-Length: 716
*/
//Request
{
"outfit" : {
"arms" : {
"id" : 0,
"mask" : 0,
"pat" : 0,
"tex" : 0
},
"attitude" : 0,
"body" : {
"id" : 3691343236,
"mask" : 0,
"pat" : 0,
"tex" : 0
},
"feet" : {
"id" : 1532093990,
"mask" : 0,
"pat" : 0,
"tex" : 0
},
"hair" : {
"id" : 158418233,
"mask" : 0,
"pat" : 0,
"tex" : 0
},
"hat" : {
"id" : 1470462579,
"mask" : 0,
"pat" : 0,
"tex" : 0
},
"height" : 0.32055640,
"horn" : {
"id" : 3680499229,
"mask" : 0,
"pat" : 0,
"tex" : 0
},
"mask" : {
"id" : 3663390882,
"mask" : 0,
"pat" : 0,
"tex" : 0
},
"neck" : {
"id" : 3800884691,
"mask" : 0,
"pat" : 0,
"tex" : 0
},
"prop" : {
"id" : 2035109393,
"mask" : 0,
"pat" : 0,
"tex" : 0
},
"scale" : 0.008167967199999999,
"seed" : 8016,
"voice" : 0,
"wing" : {
"id" : 2245279351,
"mask" : 0,
"pat" : 0,
"tex" : 0
}
},
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:18:27 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 614
*/
//Response
{
"result" : "ok",
"set_outfit" : {
"arms" : {
"id" : 0,
"mask" : 0,
"pat" : 0,
"tex" : 0
},
"attitude" : "0",
"body" : {
"id" : 3691343236,
"mask" : 0,
"pat" : 0,
"tex" : 0
},
"feet" : {
"id" : 1532093990,
"mask" : 0,
"pat" : 0,
"tex" : 0
},
"hair" : {
"id" : 158418233,
"mask" : 0,
"pat" : 0,
"tex" : 0
},
"hat" : {
"id" : 1470462579,
"mask" : 0,
"pat" : 0,
"tex" : 0
},
"height" : 0.3205564055560303,
"horn" : {
"id" : 3680499229,
"mask" : 0,
"pat" : 0,
"tex" : 0
},
"mask" : {
"id" : 3663390882,
"mask" : 0,
"pat" : 0,
"tex" : 0
},
"neck" : {
"id" : 3800884691,
"mask" : 0,
"pat" : 0,
"tex" : 0
},
"prop" : {
"id" : 2035109393,
"mask" : 0,
"pat" : 0,
"tex" : 0
},
"scale" : 0.008167967321492012,
"seed" : 8016,
"voice" : 0,
"wing" : {
"id" : 2245279351,
"mask" : 0,
"pat" : 0,
"tex" : 0
}
}
}

View File

@ -0,0 +1,44 @@
/*
POST /account/userdata HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: NkoRlgM
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 1077
*/
//Request
{
"data" : "eyJtaXNjIjp7InByZWZlcnJlZEhvbWVMZXZlbCI6MCwic3VibWl0VHV0b3JpYWxFdmVudHMiOnRydWV9LCJ0dXRvcmlhbCI6eyJsYXN0VGVsZXBvcnRIb21lVGltZSI6MzU3MjQyMzg5NiwibGFzdEpvaW5SYW5kb21HYW1lVGltZSI6MzU3MjQyMzg5NiwiZm9yZ2UiOjEsIm1lbnUiOjEsInNob3V0IjowLCJzaG9wIjowLCJidWRkeVJlcSI6MCwiZGl2ZSI6MCwiYnJlYXRoIjowLCJkaXZlTW92ZSI6MCwiZmYiOmZhbHNlLCJlZGl0bW9kZSI6MCwid2ViUmVtb3RlIjowLCJtZW1vcnlTcGVsbHNWaWV3ZWQiOjAsIm1lbW9yeVNocmluZXNWaWV3ZWQiOjAsInNwYWNlU3BlbGxzVmlld2VkIjowLCJzcGFjZVNocmluZXNWaWV3ZWQiOjB9LCJtZW51Ijp7ImZyaWVuZENvbnN0ZWxsYXRpb25QcmVmZXJyZWQiOmZhbHNlLCJuZXN0V2VsY29tZUxldmVsIjowfSwiYWNoaWV2ZW1lbnRzIjp7ImRhaWx5X3F1ZXN0c19hY3RpdmF0ZWQiOltmYWxzZSxmYWxzZSxmYWxzZSxmYWxzZV0sImRhaWx5X3F1ZXN0c19yZXdhcmRfZ2l2ZW4iOltmYWxzZSxmYWxzZSxmYWxzZSxmYWxzZV0sImRhaWx5X3F1ZXN0c19pbnRlcmFjdGlvbl9lcG9jaF90aW1lIjoxNzE3MjY2MTc2fSwiZWxkZXJfaXRlbV9pZHMiOls0MjQ3ODc4MDA5LDg1MDE1NTg5Myw3NzY5NDQxOTddLCJlbGRlcl9pdGVtX2hwcyI6WzQsNCwzXX0A",
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"time" : 1717267971,
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"version" : 3
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:10 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 950
*/
//Response
{
"userdata" : {
"data" : "eyJtaXNjIjp7InByZWZlcnJlZEhvbWVMZXZlbCI6MCwic3VibWl0VHV0b3JpYWxFdmVudHMiOnRydWV9LCJ0dXRvcmlhbCI6eyJsYXN0VGVsZXBvcnRIb21lVGltZSI6MzU3MjQyMzg5NiwibGFzdEpvaW5SYW5kb21HYW1lVGltZSI6MzU3MjQyMzg5NiwiZm9yZ2UiOjEsIm1lbnUiOjEsInNob3V0IjowLCJzaG9wIjowLCJidWRkeVJlcSI6MCwiZGl2ZSI6MCwiYnJlYXRoIjowLCJkaXZlTW92ZSI6MCwiZmYiOmZhbHNlLCJlZGl0bW9kZSI6MCwid2ViUmVtb3RlIjowLCJtZW1vcnlTcGVsbHNWaWV3ZWQiOjAsIm1lbW9yeVNocmluZXNWaWV3ZWQiOjAsInNwYWNlU3BlbGxzVmlld2VkIjowLCJzcGFjZVNocmluZXNWaWV3ZWQiOjB9LCJtZW51Ijp7ImZyaWVuZENvbnN0ZWxsYXRpb25QcmVmZXJyZWQiOmZhbHNlLCJuZXN0V2VsY29tZUxldmVsIjowfSwiYWNoaWV2ZW1lbnRzIjp7ImRhaWx5X3F1ZXN0c19hY3RpdmF0ZWQiOltmYWxzZSxmYWxzZSxmYWxzZSxmYWxzZV0sImRhaWx5X3F1ZXN0c19yZXdhcmRfZ2l2ZW4iOltmYWxzZSxmYWxzZSxmYWxzZSxmYWxzZV0sImRhaWx5X3F1ZXN0c19pbnRlcmFjdGlvbl9lcG9jaF90aW1lIjoxNzE3MjY2MTc2fSwiZWxkZXJfaXRlbV9pZHMiOls0MjQ3ODc4MDA5LDg1MDE1NTg5Myw3NzY5NDQxOTddLCJlbGRlcl9pdGVtX2hwcyI6WzQsNCwzXX0A",
"time" : 1717267971,
"version" : 3
}
}

View File

@ -0,0 +1,133 @@
/*
POST /account/auth/login HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: viOoAJQ
x-sky-level-id: 3526133726
Content-Length: 1381
*/
//Request
{
"device" : "00000000-0000-0000-0000-000000000000",
"device_key" : "A/cWqIB7p2KOtBmqFiZp9W2j+dhQXq8zOzX0f0rnaFjr",
"device_name" : "Unknown",
"device_token" : "",
"external_credentials" : {
"alias" : "Buga_Luga007",
"external_account_type" : "Steam",
"player_id" : "76561199698282316",
"signature" : "140000002f8193240970dd484c07986701001001119b9166180000000100000005000000a04b5443044b11d0a5981f0003000000b200000032000000040000004c079867010010012a7b230054c8931b0138a8c000000000129b9166924aad66010096be0c000000000004a4fc0d90832fff0d6ebe416afeeda1e3956b5ddc38ef9c6735bc9e9aa9282657f07f9048643ac4c3737cd6d1bce3f0b1cfcb0654fe67e490107b5277d79d317b137f05b3f2cf9469b374b203b7523b1d2c0cbbfb48081dc4ef632457a26a6015d1bd0d0af34972d4675818eb458eb4861dea69076208352907f70877f729de"
},
"hashes" : [
1913095961,
1316250610,
2510118661,
3834246998,
1731370194,
2265070178,
618912557,
2568820904,
3068255152,
4029015281,
2245054157,
3397144677,
4143622099,
1365629050,
3851695576,
1161226873,
833750417,
765041499,
3038066977,
396963162,
1906316240,
963033178,
3751658729,
1755094869,
816751585,
4133182092,
3691335459,
2529179106,
2825962898
],
"integrity" : true,
"key" : "0000000000000000000000000000000000000000000000000000000000000000",
"production" : false,
"sig" : "MEQCIH0t3Sz0Ixhr7RdwThHKmI9oj67SqTx6Z9fL6eaRxcUqAiBhUfFkdF6vKZ5GD72BBotut19qITLh5FrlIuu8IdzfDQ==",
"sig_ts" : 1720818968,
"tos_version" : 4,
"type" : "Steam",
"user" : "00000000-0000-0000-0000-000000000000"
}
/*
*/
//Response
{
"authinfo" : {
"device" : "",
"key" : "no_bcrypt",
"recovery_token" : "",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
},
"external_links" : [
{
"alias" : "Buga_Luga007",
"player_id" : "76561199698282316",
"type" : "Steam"
}
],
"resource_list" : [
"device_capabilities",
"userdata",
"set_friends",
"set_friend_statues",
"online_friends",
"set_rank",
"currency",
"forge_rates",
"motd",
"outfit_defs",
"achievements",
"achievement_stats",
"relationship_defs",
"questionnaires",
"event_schedule",
"set_world_quests",
"iap_list",
"invite_list",
"unlocks",
"get_shop",
"spirit_shops",
"collectibles",
"wing_buffs",
"gift_messages",
"set_app_badge_number",
"get_consumable_defs",
"get_consumables",
"get_buff_defs",
"get_buffs",
"get_lootboxes",
"checkpoints",
"generic_shop_defs",
"external_account_friends",
"serendipity_matches",
"get_star_tag_defs",
"status_unlocks",
"free_gifts",
"get_map_defs",
"achievement_defs",
"achievement_stats_tracking",
"event_currency_defs",
"infractions",
"get_user_profile",
"emote_sequences",
"video_defs",
"messages"
],
"session" : "c96c4ac19fd8ead1e884e4a852a7e933"
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,37 @@
/*
POST /account/buff/get_buffs1 HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: xNVXiA8
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 141
*/
//Request
{
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:20 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 100
*/
//Response
{
"get_buffs" : [],
"get_buffs_sign" : "0bbc6ece261b6dc879e95a3f0e7b51b98dce8c8d0eddb9f7e46ceec12d69ea2c"
}

View File

@ -0,0 +1,38 @@
/*
POST /account/chat/send HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: 5Cageua
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 864432821
Content-Length: 187
*/
//Request
{
"ch" : "local",
"msg" : "here comes the krills xD",
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 22:09:59 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 68
*/
//Response
{
"msg_id" : "455eb8e0-16a4-4dc3-a422-c92a354e9f4b",
"result" : "success"
}

View File

@ -0,0 +1,845 @@
/*
POST /account/commerce/product_info HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: PZRQvJM
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 660
*/
//Request
{
"order" : "76561199698282316|en|140000002f8193240970dd484c07986701001001119b9166180000000100000005000000a04b5443044b11d0a5981f0003000000b200000032000000040000004c079867010010012a7b230054c8931b0138a8c000000000129b9166924aad66010096be0c000000000004a4fc0d90832fff0d6ebe416afeeda1e3956b5ddc38ef9c6735bc9e9aa9282657f07f9048643ac4c3737cd6d1bce3f0b1cfcb0654fe67e490107b5277d79d317b137f05b3f2cf9469b374b203b7523b1d2c0cbbfb48081dc4ef632457a26a6015d1bd0d0af34972d4675818eb458eb4861dea69076208352907f70877f729de",
"platform" : "steam",
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:15 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 10290
*/
//Response
{
"product_info" : [
{
"c" : "BD",
"d" : "Base season pass",
"i" : "SPASSR",
"n" : "Season Pass Regular",
"p" : 999
},
{
"c" : "BD",
"d" : "Season pass with bonuses.",
"i" : "SPASSP3",
"n" : "Season Pass Pack",
"p" : 1999
},
{
"c" : "BD",
"d" : "Purchase Gift Season Pass for your friends",
"i" : "SPASSG",
"n" : "Gift Season Pass",
"p" : 999
},
{
"c" : "BD",
"d" : "15 Season Candles to unlock seasonal items!",
"i" : "SCDL5",
"n" : "Season Candles",
"p" : 499
},
{
"c" : "BD",
"d" : "Fur cape, mask, and 2 music sheets",
"i" : "SNC07",
"n" : "Gratitude Fur Cape Pack",
"p" : 1999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC97",
"n" : "Mischief Crabula Mask",
"p" : 299
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC98",
"n" : "Mischief Crabula Cloak",
"p" : 1499
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC96",
"n" : "Mischief Gossamer Cape",
"p" : 1499
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC36",
"n" : "Mischief Withered Antlers",
"p" : 999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC37",
"n" : "Mischief Witch Jumper",
"p" : 999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC38",
"n" : "Mischief Spider Quiff",
"p" : 499
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC39",
"n" : "Mischief Pumpkin Prop",
"p" : 199
},
{
"c" : "BD",
"d" : "Special item to celebrate this holiday!",
"i" : "SNC14",
"n" : "Mischief Witch Hat",
"p" : 999
},
{
"c" : "BD",
"d" : "Special item to celebrate this holiday",
"i" : "SNC15",
"n" : "Mischief Web Cape",
"p" : 1499
},
{
"c" : "BD",
"d" : "Limited time offer to celebrate Halloween!",
"i" : "SNC06",
"n" : "Hungry Pumpkin Hat",
"p" : 1199
},
{
"c" : "BD",
"d" : "Limited time offer to celebrate Halloween!",
"i" : "SNC05",
"n" : "Spooky Bat Cape",
"p" : 1799
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC99",
"n" : "Moth Appreciation Pack",
"p" : 999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC100",
"n" : "Sparrow Appreciation Pack",
"p" : 999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC101",
"n" : "Cozy Hermit Boots",
"p" : 699
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC102",
"n" : "Winter Quilted Cape",
"p" : 1499
},
{
"c" : "BD",
"d" : "Special item to celebrate this holiday!",
"i" : "SNC17",
"n" : "Days of Feast Horns",
"p" : 1499
},
{
"c" : "BD",
"d" : "Special item to celebrate the holiday!",
"i" : "SNC18",
"n" : "Snowflake Cape",
"p" : 1499
},
{
"c" : "BD",
"d" : "25 Candles with bonus Feast Hat",
"i" : "SNC03",
"n" : "Days of Feast Pack",
"p" : 699
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC40",
"n" : "Winter Feast Snowglobe",
"p" : 999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC41",
"n" : "Winter Ancestor Cape",
"p" : 999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC42",
"n" : "Snowflake Hair Accessory",
"p" : 199
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC73",
"n" : "Tournament Skyball Set",
"p" : 1499
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC76",
"n" : "Cozy Hermit Cape",
"p" : 1499
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC103",
"n" : "Days of Fortune Dragon Vestment",
"p" : 999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC104",
"n" : "Days of Fortune Dragon Stole",
"p" : 1499
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC105",
"n" : "Days of Fortune Dragon Bangles",
"p" : 199
},
{
"c" : "BD",
"d" : "Special item to celebrate this holiday!",
"i" : "SNC19",
"n" : "Days of Fortune Orange",
"p" : 99
},
{
"c" : "BD",
"d" : "Special pack to celebrate this holiday!",
"i" : "SNC21",
"n" : "Days of Fortune Pack",
"p" : 2499
},
{
"c" : "BD",
"d" : "Special item to celebrate this holiday!",
"i" : "SNC20",
"n" : "Days of Fortune Wool Hat",
"p" : 999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC43",
"n" : "Days of Fortune Fish Accessory",
"p" : 199
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC44",
"n" : "Days of Fortune Fish Pack",
"p" : 1999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC74",
"n" : "Fortune Enchanted Umbrella",
"p" : 1499
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC75",
"n" : "Fortune Muralist's Smock",
"p" : 999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC106",
"n" : "Days of Love Meteor Mantle",
"p" : 1799
},
{
"c" : "BD",
"d" : "Special pack to celebrate this holiday!",
"i" : "SNC22",
"n" : "Days of Love Seesaw Pack",
"p" : 1999
},
{
"c" : "BD",
"d" : "Swing set and Gift Season Pass",
"i" : "SNC08",
"n" : "Days of Love Pack",
"p" : 1999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC45",
"n" : "Days of Love Gondola Pack",
"p" : 1999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC77",
"n" : "Love Serendipitous Scepter",
"p" : 1499
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC79",
"n" : "Days of Love Classy Cravat",
"p" : 499
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC12",
"n" : "Kizuna AI Pack",
"p" : 1999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC109",
"n" : "Bloom Lilypad Umbrella",
"p" : 1499
},
{
"c" : "BD",
"d" : "Special item to celebrate this holiday!",
"i" : "SNC23",
"n" : "Bloom Teaset",
"p" : 1999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC46",
"n" : "Purple Bloom Teaset",
"p" : 1999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC80",
"n" : "Bloom Picnic Basket",
"p" : 1999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC81",
"n" : "Bloom Gardening Tunic",
"p" : 999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC112",
"n" : "Cinnamoroll Pop-Up Cafe Combo",
"p" : 1499
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC113",
"n" : "Cinnamoroll Pop-Up Cafe Plushie",
"p" : 1499
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC114",
"n" : "Cinnamoroll Pop-Up Cafe Mini Companion",
"p" : 699
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC115",
"n" : "Cinnamoroll Pop-Up Cafe Bowtie and Cloud Cape",
"p" : 1499
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC110",
"n" : "Nature Wave Pack",
"p" : 1999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC111",
"n" : "Nature Wave-Touched Hair",
"p" : 699
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC82",
"n" : "Nature Glasses Pack",
"p" : 1999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC83",
"n" : "Nature Sonorous Seashell",
"p" : 499
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC47",
"n" : "Nature Turtle Pack",
"p" : 1999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC48",
"n" : "Nature Turtle Cape",
"p" : 1499
},
{
"c" : "BD",
"d" : "Special item to celebrate this holiday!",
"i" : "SNC24",
"n" : "Ocean Necklace",
"p" : 199
},
{
"c" : "BD",
"d" : "Special item to celebrate this holiday!",
"i" : "SNC25",
"n" : "Ocean Cape",
"p" : 1499
},
{
"c" : "BD",
"d" : "Charity cape for Earth Day",
"i" : "SNC09",
"n" : "Earth Cape",
"p" : 499
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC86",
"n" : "Triumph Violin",
"p" : 1999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC57",
"n" : "Fledgling Harp",
"p" : 499
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC56",
"n" : "Rhythm Guitar",
"p" : 1499
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC51",
"n" : "Triumph Handpan",
"p" : 1999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC116",
"n" : "Dark Rainbow Loafers",
"p" : 1999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC117",
"n" : "Color Bubble Machine",
"p" : 1499
},
{
"c" : "BD",
"d" : "Special pack to celebrate this holiday!",
"i" : "SNC27",
"n" : "Rainbow Pack",
"p" : 1999
},
{
"c" : "BD",
"d" : "Special item to celebrate this holiday!",
"i" : "SNC28",
"n" : "Rainbow Hat",
"p" : 999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC49",
"n" : "Rainbow Earring",
"p" : 299
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC55",
"n" : "Double Rainbow Pack",
"p" : 999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC58",
"n" : "Rainbow Headphones",
"p" : 999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC84",
"n" : "Dark Rainbow Pack",
"p" : 999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC85",
"n" : "Dark Rainbow Tunic",
"p" : 1499
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC119",
"n" : "SkyFest Wireframe Cape",
"p" : 1999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC118",
"n" : "SkyFest Oreo Headband",
"p" : 499
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC87",
"n" : "Anniversary Plush",
"p" : 999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC120",
"n" : "Tournament Tunic",
"p" : 999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC121",
"n" : "Tournament Golden Garland",
"p" : 499
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC89",
"n" : "Sunlight Surfboard",
"p" : 1499
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC90",
"n" : "Sunlight Chunky Sandals",
"p" : 999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC59",
"n" : "Sunlight Campfire Snack Kit",
"p" : 1999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC60",
"n" : "Sunlight Jelly Shoulder Buddy",
"p" : 299
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC34",
"n" : "Summer Seashell Hairpin",
"p" : 99
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC35",
"n" : "Summer Bunny Accessory",
"p" : 299
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC13",
"n" : "Lantern Pack",
"p" : 1999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC33",
"n" : "Summer Parasol",
"p" : 1999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC91",
"n" : "Style Wide-Leg Jeans",
"p" : 999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC92",
"n" : "Style Flame Sunglasses",
"p" : 299
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC93",
"n" : "Style Heart Sunglasses",
"p" : 499
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC95",
"n" : "Style Bunny Slippers",
"p" : 699
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC70",
"n" : "Journey Pack",
"p" : 2499
},
{
"c" : "BD",
"d" : "A one of a kind cape.",
"i" : "SNC29",
"n" : "Little Prince Scarf Cape",
"p" : 1499
},
{
"c" : "BD",
"d" : "A companion on your back and a decoration",
"i" : "SNC30",
"n" : "Little Prince Fox",
"p" : 999
},
{
"c" : "BD",
"d" : "A magical cape.",
"i" : "SNC32",
"n" : "Little Prince Asteroid Jacket",
"p" : 2499
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC88",
"n" : "Musical Voyage Sneakers",
"p" : 699
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC63",
"n" : "Tiara We Can Touch",
"p" : 499
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC64",
"n" : "Runaway Hair",
"p" : 299
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC65",
"n" : "Voice of AURORA",
"p" : 1499
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC69",
"n" : "Runaway Outfit",
"p" : 999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC66",
"n" : "To The Love Outfit",
"p" : 999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC67",
"n" : "Giving In Cape",
"p" : 1499
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC68",
"n" : "Wings of AURORA",
"p" : 2499
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC107",
"n" : "Gift of the Nine-Colored Deer",
"p" : 1499
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC108",
"n" : "Radiance of the Nine-Colored Deer",
"p" : 1999
},
{
"c" : "BD",
"d" : "Welcome to Sky! A pack to get you started.",
"i" : "SNC00",
"n" : "Starter Pack",
"p" : 499
},
{
"c" : "BD",
"d" : "15 Candles to give to your friends!",
"i" : "CDL5",
"n" : "Regular Candles",
"p" : 499
},
{
"c" : "BD",
"d" : "35 Candles (30 + 5 bonus!) to give to your friends.",
"i" : "CDL10",
"n" : "Regular Candles",
"p" : 999
},
{
"c" : "BD",
"d" : "Special pack for global relief efforts",
"i" : "SNC10",
"n" : "Healing Pack",
"p" : 1999
},
{
"c" : "BD",
"d" : "72 Candles (60 + 12 bonus!) to give to your friends.",
"i" : "CDL20",
"n" : "Regular Candles",
"p" : 1999
},
{
"c" : "BD",
"d" : "Be a founder and support thatgamecompany!",
"i" : "SNC01",
"n" : "Founder's Pack",
"p" : 2999
},
{
"c" : "BD",
"d" : "Special event item",
"i" : "SNC54",
"n" : "TGC Guitar Pack",
"p" : 2999
},
{
"c" : "BD",
"d" : "190 Candles (150 + 40 bonus!) to give to your friends.",
"i" : "CDL50",
"n" : "Regular Candles",
"p" : 4999
}
],
"result" : "ok"
}

View File

@ -0,0 +1,40 @@
/*
POST /account/commerce/receipt HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: QooPehv
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 1509719447
Content-Length: 769
*/
//Request
{
"platform" : "steam",
"receipt" : "2325290|242107|false|76561199698282316|140000002f8193240970dd484c07986701001001119b9166180000000100000005000000a04b5443044b11d0a5981f0003000000b200000032000000040000004c079867010010012a7b230054c8931b0138a8c000000000129b9166924aad66010096be0c000000000004a4fc0d90832fff0d6ebe416afeeda1e3956b5ddc38ef9c6735bc9e9aa9282657f07f9048643ac4c3737cd6d1bce3f0b1cfcb0654fe67e490107b5277d79d317b137f05b3f2cf9469b374b203b7523b1d2c0cbbfb48081dc4ef632457a26a6015d1bd0d0af34972d4675818eb458eb4861dea69076208352907f70877f729de",
"restore" : false,
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"target_pid" : "CDL10",
"target_uid" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:55 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 40
*/
//Response
{
"unacknowledged_external_purchases" : []
}

View File

@ -0,0 +1,41 @@
/*
POST /account/commerce/submit_order HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: SlDBdbF
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 1509719447
Content-Length: 733
*/
//Request
{
"order" : "76561199698282316|en|140000002f8193240970dd484c07986701001001119b9166180000000100000005000000a04b5443044b11d0a5981f0003000000b200000032000000040000004c079867010010012a7b230054c8931b0138a8c000000000129b9166924aad66010096be0c000000000004a4fc0d90832fff0d6ebe416afeeda1e3956b5ddc38ef9c6735bc9e9aa9282657f07f9048643ac4c3737cd6d1bce3f0b1cfcb0654fe67e490107b5277d79d317b137f05b3f2cf9469b374b203b7523b1d2c0cbbfb48081dc4ef632457a26a6015d1bd0d0af34972d4675818eb458eb4861dea69076208352907f70877f729de",
"platform" : "steam",
"product_id" : "CDL10",
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"target_uid" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:50 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 33
*/
//Response
{
"order_id" : 242107,
"result" : "ok"
}

View File

@ -0,0 +1,56 @@
/*
POST /account/consumable/consume_item1 HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: eyvdrdf
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 567986524
Content-Length: 207
*/
//Request
{
"consumable_count" : 1,
"consumable_id" : 701255829,
"receiver_uuid" : [],
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 22:54:52 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 365
*/
//Response
{
"consume_item" : "success",
"get_buffs" : [
{
"active_until" : 1720825493,
"buff_id" : 1750685908,
"cooldown_until" : 1720824893,
"giver_user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
],
"get_buffs_sign" : "e8e64b888c3e59f9b273c28814e4e8cb244c47acc3d91a8332ac11120be83e5b",
"get_consumables" : [
{
"consumable_id" : 701255829,
"cooldown_until" : 1720825793,
"quantity" : 0
}
],
"shared_results" : []
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,36 @@
/*
POST /account/consumable/get_consumables1 HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: PsCJZAs
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 141
*/
//Request
{
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:19 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 22
*/
//Response
{
"get_consumables" : []
}

View File

@ -0,0 +1,37 @@
/*
POST /account/device_capabilities/lookup HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: RT8Q8c5
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 230
*/
//Request
{
"device_desc" : "{\"brand\":\"Micro-Star International Co., Ltd.\",\"model\":\"MS-7D25\"}",
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:10 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 28
*/
//Response
{
"device_capabilities" : null
}

View File

@ -0,0 +1,37 @@
/*
POST /account/lootboxes/get HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: bera9T6
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 141
*/
//Request
{
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:20 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 20
*/
//Response
{
"get_lootboxes" : []
}

View File

@ -0,0 +1,49 @@
/*
POST /account/lootboxes/redeem_box HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: e9RarTV
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 1649439303
Content-Length: 170
*/
//Request
{
"box_id" : "lootbox_common_19",
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:20:13 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 149
*/
//Response
{
"currency" : {
"candles" : 4,
"wax" : 146
},
"get_consumables" : [
{
"consumable_id" : 701255829,
"cooldown_until" : 0,
"quantity" : 1
}
],
"get_lootboxes" : [],
"result" : "ok"
}

View File

@ -0,0 +1,38 @@
/*
POST /account/serendipity/get HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: 2NaD2KU
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 155
*/
//Request
{
"max_count" : 4,
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:22 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 26
*/
//Response
{
"serendipity_matches" : []
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,38 @@
/*
POST /account/support/has_reply HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: Bj
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 141
*/
//Request
{
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:09 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 33
*/
//Response
{
"has_reply" : false,
"result" : "ok"
}

View File

@ -0,0 +1,45 @@
/*
POST /account/wing_buffs/collect HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: UuF
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 2477345666
Content-Length: 181
*/
//Request
{
"names" : [ "l_DuskGraveyard_2" ], //can be [ "l_DuskGraveyard_2",... ]
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:34:17 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 93
*/
//Response
{
"result" : "ok",
"update_wing_buffs" : [
{
"collected" : true,
"name" : "l_DuskGraveyard_2"
}
// can be ...
]
}

View File

@ -0,0 +1,249 @@
/*
POST /account/wing_buffs/convert HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: Xjkpjnv
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 2251284635
Content-Length: 141
*/
//Request
{
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 22:56:36 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 3326
*/
//Response
{
"currency" : {
"candles" : 11,
"prestige" : 7,
"prestige_vip" : 7,
"wax" : 91
},
"result" : "ok",
"wing_buffs" : [
{
"collected" : false,
"deposit_id" : 17592186044416,
"deposited" : false,
"last_conversion" : 1720824996,
"name" : "l_Dawn_0"
},
{
"collected" : false,
"deposit_id" : 8796093022208,
"deposited" : false,
"last_conversion" : 1720824996,
"name" : "l_Dawn_2"
},
{
"collected" : false,
"deposit_id" : 2,
"deposited" : false,
"last_conversion" : 1720824996,
"name" : "l_DuskEnd_0"
},
{
"collected" : false,
"deposit_id" : 70368744177664,
"deposited" : false,
"last_conversion" : 1720824996,
"name" : "l_DuskGraveyard_0"
},
{
"collected" : false,
"name" : "l_DuskGraveyard_2"
},
{
"collected" : false,
"deposit_id" : 4,
"deposited" : false,
"last_conversion" : 1720824996,
"name" : "l_DuskGraveyard_5"
},
{
"collected" : false,
"deposit_id" : 1024,
"deposited" : false,
"last_conversion" : 1720824996,
"name" : "l_Dusk_1"
},
{
"collected" : false,
"deposit_id" : 17179869184,
"deposited" : false,
"last_conversion" : 1720824996,
"name" : "l_Night2_1"
},
{
"collected" : false,
"deposit_id" : 36028797018963968,
"deposited" : false,
"last_conversion" : 1720824996,
"name" : "l_Prairie_ButterflyFields_1"
},
{
"collected" : false,
"deposit_id" : 8388608,
"deposited" : false,
"last_conversion" : 1720824996,
"name" : "l_Prairie_ButterflyFields_2"
},
{
"collected" : false,
"deposit_id" : 65536,
"deposited" : false,
"last_conversion" : 1720824996,
"name" : "l_Prairie_Village_0"
},
{
"collected" : false,
"name" : "l_Prairie_Village_1"
},
{
"collected" : false,
"deposit_id" : 1,
"deposited" : false,
"last_conversion" : 1720824996,
"name" : "l_Prairie_Village_4"
},
{
"collected" : false,
"deposit_id" : 8,
"deposited" : false,
"last_conversion" : 1720824996,
"name" : "l_RainEnd_0"
},
{
"collected" : false,
"deposit_id" : 4398046511104,
"deposited" : false,
"last_conversion" : 1720824996,
"name" : "l_RainForest_2"
},
{
"collected" : false,
"deposit_id" : 68719476736,
"deposited" : false,
"last_conversion" : 1720824996,
"name" : "l_RainMid_1"
},
{
"collected" : false,
"deposit_id" : 524288,
"deposited" : false,
"last_conversion" : 1720824996,
"name" : "l_Rain_0"
},
{
"collected" : false,
"deposit_id" : 137438953472,
"deposited" : false,
"last_conversion" : 1720824996,
"name" : "l_Rain_1"
},
{
"collected" : false,
"deposit_id" : 9007199254740992,
"deposited" : false,
"last_conversion" : 1720824996,
"name" : "l_Storm_1"
},
{
"collected" : false,
"deposit_id" : 4503599627370496,
"deposited" : false,
"last_conversion" : 1720824996,
"name" : "l_Storm_2"
},
{
"collected" : false,
"deposit_id" : 4194304,
"deposited" : false,
"last_conversion" : 1720824996,
"name" : "l_Storm_3"
},
{
"collected" : false,
"deposit_id" : 549755813888,
"deposited" : false,
"last_conversion" : 1720824996,
"name" : "l_Storm_4"
},
{
"collected" : false,
"deposit_id" : 2147483648,
"deposited" : false,
"last_conversion" : 1720824996,
"name" : "l_Storm_5"
},
{
"collected" : false,
"deposit_id" : 512,
"deposited" : false,
"last_conversion" : 1720824996,
"name" : "l_Storm_7"
},
{
"collected" : false,
"deposit_id" : 2199023255552,
"deposited" : false,
"last_conversion" : 1720824996,
"name" : "l_Storm_8"
},
{
"collected" : false,
"deposit_id" : 4294967296,
"deposited" : false,
"last_conversion" : 1720824996,
"name" : "l_SunsetEnd_0"
},
{
"collected" : false,
"deposit_id" : 35184372088832,
"deposited" : false,
"last_conversion" : 1720824996,
"name" : "l_SunsetRace_0"
},
{
"collected" : false,
"deposit_id" : 33554432,
"deposited" : false,
"last_conversion" : 1720824996,
"name" : "l_Sunset_0"
},
{
"collected" : false,
"deposit_id" : 16,
"deposited" : false,
"last_conversion" : 1720824996,
"name" : "l_Sunset_1"
},
{
"collected" : false,
"deposit_id" : 32,
"deposited" : false,
"last_conversion" : 1720824996,
"name" : "l_Sunset_2"
}
]
}

View File

@ -0,0 +1,49 @@
/*
POST /account/wing_buffs/deposit HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: xxXfBaE
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3479786579
Content-Length: 196
*/
//Request
{
"name_deposit_id_pairs" : [
[ "l_SunsetEnd_0", 4294967296 ] // can be ...
],
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 22:41:53 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 121
*/
//Response
{
"result" : "ok",
"update_wing_buffs" : [
{
"collected" : false,
"deposit_id" : 4294967296,
"deposited" : true,
"name" : "l_SunsetEnd_0"
}
//can be ...
]
}

View File

@ -0,0 +1,44 @@
/*
POST /account/wing_buffs/drop HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: Qdxnzds
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 1705189686
Content-Length: 171
*/
//Request
{
"names" : [ "l_DuskGraveyard_2" ], // can be ...
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 22:36:17 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 84
*/
//Response
{
"result" : "ok",
"update_wing_buffs" : [
{
"collected" : false,
"name" : "l_DuskGraveyard_2"
}
// can be ...
]
}

View File

@ -0,0 +1,53 @@
/*
POST /account/wing_buffs/get HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: d
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 141
*/
//Request
{
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:18 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 210
*/
//Response
{
"result" : "ok",
"wing_buffs" : [
{
"collected" : true,
"deposit_id" : 0,
"deposited" : false,
"last_conversion" : 0,
"name" : "l_Dawn_0"
},
{
"collected" : true,
"deposit_id" : 0,
"deposited" : false,
"last_conversion" : 0,
"name" : "l_Dawn_2"
}
]
}

View File

@ -0,0 +1,40 @@
/*
POST /service/auth/api/v1/token HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: T97IFGH
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 141
*/
//Request
{
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:10 GMT
Content-Type: application/json; charset=utf-8
Connection: keep-alive
Content-Length: 306
*/
//Response
{
"host" : "sky.resources.cdn.thatgamecompany.com",
"prefix" : "test/",
"status" : "OK",
"token" : "eyJhbGciOiJFUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.6vklvi1nvJ9oWdQE85K4S4G7sZQILArFK8Qfv9sclssQBSLqMKOxlJIFFJ6zz0sR5Vf1LeuS6liXWT06mZm1sg"
}

View File

@ -0,0 +1,38 @@
/*
POST /service/infraction/api/v1/get_infractions_status_decorated HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: qqsr0KO
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 141
*/
//Request
{
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:25 GMT
Content-Type: application/json; charset=utf-8
Connection: keep-alive
Content-Length: 37
*/
//Response
{
"access_status" : null,
"status" : "OK"
}

View File

@ -0,0 +1,53 @@
/*
POST /service/infraction/api/v1/get_infractions_status_many HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: 7BHPNnC
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 1509719447
Content-Length: 193
*/
//Request
{
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_ids" : [
"76c06958-484d-4a31-9553-fd0a8dd106ba",
"aa3a862c-9e3a-45a3-bb9b-c2ee8bd0e02f",
"b92c3e3a-9cfc-4af8-8e46-0fd303de7297",
"559cad1f-2a35-4f5a-a53d-b5e9ce5fb0e9",
"3c715bbe-12ca-44d6-b08c-575fc086212d"
]
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:45 GMT
Content-Type: application/json; charset=utf-8
Connection: keep-alive
Content-Length: 111
*/
//Response
{
"player_access_status" : [
{
"access_status" : [],
"user_id" : "3c715bbe-12ca-44d6-b08c-575fc086212d"
},
{
"access_status" : [],
"user_id" : "aa3a862c-9e3a-45a3-bb9b-c2ee8bd0e02f"
}
],
"status" : "OK"
}

View File

@ -0,0 +1,72 @@
/*
POST /service/message/api/v1/get HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: 2DNcDMl
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 2477345666
Content-Length: 188
*/
//Request
{
"messages" : [
{
"id" : "66919d2a610d74e457876227"
}
],
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:30:37 GMT
Content-Type: application/json; charset=utf-8
Connection: keep-alive
Content-Length: 4712
*/
//Response
{
"status" : "OK",
"update_messages" : [
{
"payload" : {
"attachments" : [
{
"name" : "SkyFest: An Anniversary Celebration Like No Other!0",
"title" : "SkyFest: An Anniversary Celebration Like No Other!",
"type" : "link",
"url" : "https://www.thatskygame.com/news/skyfest-2024-an-anniversary-celebration-like-no-other"
}
],
"body" : "Every year we throw a party to celebrate Skys birthday, but this year will bring something special—its not every day that Sky turns 5!\n\nWere calling Skys 5th Anniversary SkyFest, and for <b>two full weeks through July 26th</b> it combines in-person and real-life events for everyone to enjoy.\n\nIt all begins at a special time: <b>5:00 pm on July 12th PDT</b> (all times UTC -7). Once the event begins, meditate at a circle in Aviary Village near the Friendship Constellation statue. That will transport you to a special version of Aviary Village which will be the center of the SkyFest party, with parades and decorations and a <b>whole</b> lot more. \n\nWhere gates to the usual areas of Sky would stand, three familiar portals will take you to special locations instead:\n・History of Sky Gallery (Isle of Dawn)\n・Art of Sky Gallery (Hidden Forest)\n・Developer Talk Stage (Eye of Eden)\n\nWhy start at 5:00 pm PDT? Because thats the same time that the in-person SkyFest celebration begins in Tokyo, Japan! For two days, the in-person event will have talks and presentations about all things Sky. \n\nWe knew, though, that not everyone would be able to attend the in-person event—so thats why were bringing some of that in-person gathering into the game! \n\n<b>From July 12th through July 14th, you can watch special in-game livestreams of talks and more at SkyFest!</b> \n\n<b>July 12</b>\n・7:00 pm - Guided Tour of Skys History with the devs (History Gallery)\nJoin us on a live tour through the History Gallery as we share stories and more about how Sky became what it is today!\n\n・8:00 pm - SkyFest 2024 Keynote with Jenova Chen (Developer Talk Stage)\nLets just say, you dont want to miss this one…\n\n・11:00 pm - How We Got 10,000 Players into a Level (Developer Talk Stage)\nHeres a peek at how our engineering team created the tech that helped us break a GUINNESS WORLD RECORDS™ title!\n\n<b>July 13</b>\n・6:00 pm - Design at Record-Breaking Scale in Sky: Children of the Light (Developer Talk Stage)\nIts okay, you can cry! Learn how the team designed the AURORA Concert to make it a memorable and moving experience.\n\n・7:00 pm - Guided Tour of Skys Art with the devs (Art Gallery)\nTake a tour through the Art Gallery as we talk about some of the art that played a key role in Skys development.\n\n<b>July 14</b>\n・00:00 am - Designing to Reduce Toxicity in Online Games (Developer Talk Stage)\nHow do you make a game that welcomes everybody, with a world that allows compassion and generosity to blossom?\n\n\n<b>And theres plenty more to see!</b> \n<b>Every hour</b> in these areas are other videos, screenings, and more. Theres even a Sky musician performance! (Thats July 14th at 1:00 am PDT by the way—hope you can be there. ❤︎) \n\nIf you miss the livestreams or videos during the opening weekend of SkyFest, dont worry—the Developer Talk Stage is the place to catch them again when they replay during the rest of the event!\n\nIn between the visits to the galleries and stage, Aviary Village is absolutely party central. Catch an even bigger Aviary fireworks show, parades celebrating five years of Sky, and more—you never know what you might find if you search around the village!\n\nDont forget about event currency while youre partying! Four star-shaped tokens can be found around the village each day. Use them to unlock some of this years new anniversary items!\n\nNew and returning anniversary cosmetics, props, and more can be purchased or unlocked with in-game currency from friendly Spirits in the Secret Area available in the Vault of Knowledge (which, by the way, is open to everyone for the event), or through the in-game shop.\n\nPhew, that was a lot for one message! And yes, thats the condensed version. What can we say? We like throwing big parties!\n\nThe full in-game SkyFest celebration continues until 11:59 pm on July 26th. We cant wait for you to join us!\n\n\n~thatgamecompany",
"headers" : {
"expires_at" : 1722063540,
"from" : "44e9f7e2-c9fb-4328-87d4-3544221856ce",
"has_attachments" : true,
"id" : "66919d2a610d74e457876227",
"received_at" : 1720818986,
"sent_at" : 1720818986,
"to" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"type" : "event"
},
"properties" : {
"hasCurrencies" : false,
"hasLinks" : true,
"hasUnlocks" : false
},
"subject" : "SkyFest: A Huge 5th Birthday Party for Everyone!"
}
}
]
}

View File

@ -0,0 +1,84 @@
/*
POST /service/message/api/v1/mark_received HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: RjXwCmf
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 290
*/
//Request
{
"messages" : [
{
"id" : "66919d2a610d74e457876227"
},
{
"id" : "66919d2a610d74e457876226"
},
{
"id" : "66919d2a610d74e457876225"
},
{
"id" : "66919d2a610d74e457876224"
}
],
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:26 GMT
Content-Type: application/json; charset=utf-8
Connection: keep-alive
Content-Length: 361
*/
//Response
{
"messages" : [
{
"payload" : {
"headers" : {
"id" : "66919d2a610d74e457876227",
"received_at" : 1720818986
}
}
},
{
"payload" : {
"headers" : {
"id" : "66919d2a610d74e457876226",
"received_at" : 1720818986
}
}
},
{
"payload" : {
"headers" : {
"id" : "66919d2a610d74e457876225",
"received_at" : 1720818986
}
}
},
{
"payload" : {
"headers" : {
"id" : "66919d2a610d74e457876224",
"received_at" : 1720818986
}
}
}
],
"status" : "OK"
}

View File

@ -0,0 +1,52 @@
/*
POST /service/message/api/v1/mark_seen HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: DlvveJi
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 2477345666
Content-Length: 188
*/
//Request
{
"messages" : [
{
"id" : "66919d2a610d74e457876227"
}
],
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:30:37 GMT
Content-Type: application/json; charset=utf-8
Connection: keep-alive
Content-Length: 108
*/
//Response
{
"messages" : [
{
"payload" : {
"headers" : {
"id" : "66919d2a610d74e457876227",
"seen_at" : 1720819837
}
}
}
],
"status" : "OK"
}

View File

@ -0,0 +1,114 @@
/*
POST /service/message/api/v2/get_all HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: j2Nzbqj
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 156
*/
//Request
{
"max_count" : 32,
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:26 GMT
Content-Type: application/json; charset=utf-8
Connection: keep-alive
Content-Length: 1431
*/
//Response
{
"messages" : [
{
"payload" : {
"headers" : {
"expires_at" : 1722063540,
"from" : "44e9f7e2-c9fb-4328-87d4-3544221856ce",
"has_attachments" : true,
"id" : "66919d2a610d74e457876227",
"sent_at" : 1720818986,
"to" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"type" : "event"
},
"properties" : {
"hasCurrencies" : false,
"hasLinks" : true,
"hasUnlocks" : false
},
"subject" : "SkyFest: A Huge 5th Birthday Party for Everyone!"
}
},
{
"payload" : {
"headers" : {
"expires_at" : 1724309940,
"from" : "44e9f7e2-c9fb-4328-87d4-3544221856ce",
"has_attachments" : true,
"id" : "66919d2a610d74e457876226",
"sent_at" : 1720818986,
"to" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"type" : "update"
},
"properties" : {
"hasCurrencies" : false,
"hasLinks" : true,
"hasUnlocks" : false
},
"subject" : "New Update: 0.26.0!"
}
},
{
"payload" : {
"headers" : {
"expires_at" : 1723273140,
"from" : "44e9f7e2-c9fb-4328-87d4-3544221856ce",
"has_attachments" : true,
"id" : "66919d2a610d74e457876225",
"sent_at" : 1720818986,
"to" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"type" : "misc"
},
"properties" : {
"hasCurrencies" : false,
"hasLinks" : true,
"hasUnlocks" : false
},
"subject" : "Linking Accounts to Save Your Game Progress"
}
},
{
"payload" : {
"headers" : {
"expires_at" : 1723445940,
"from" : "44e9f7e2-c9fb-4328-87d4-3544221856ce",
"has_attachments" : true,
"id" : "66919d2a610d74e457876224",
"sent_at" : 1720818986,
"to" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"type" : "misc"
},
"properties" : {
"hasCurrencies" : false,
"hasLinks" : true,
"hasUnlocks" : false
},
"subject" : "The Sky Web Store Has Opened!"
}
}
],
"status" : "OK"
}

View File

@ -0,0 +1,44 @@
/*
POST /service/relationship/api/v1/free_gifts/claim HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (HP ENVY x360 Convertible 13-ay1xxx; win 10.0.22631; en)
X-Session-ID: 1be93222-7934-ec11-810d-c85acf455968
Content-Type: application/json
trace-id: HKQ2sbw
user-id: 7bcff223-37a6-4856-a7ba-d23845079b3c
session: 2b393ebf9b28bb875b8a9146ba554a66
x-sky-level-id: 1509719447
Content-Length: 212
*/
//Request
{
"from_id" : "d4a641b9-cdc1-49b6-9cd5-f63abc35740c",
"gift_id" : 13198905963,
"session" : "2b393ebf9b28bb875b8a9146ba554a66",
"user" : "7bcff223-37a6-4856-a7ba-d23845079b3c",
"user_id" : "7bcff223-37a6-4856-a7ba-d23845079b3c"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Sun, 14 Jul 2024 13:12:36 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 213
*/
//Response
{
"delete_claimed_free_gift" : 13198905963,
"get_buffs" : [],
"get_buffs_sign" : "56326f04d295593b791366257a2b07ef8dec36e3ea66d48613488e155932297f",
"result" : "ok",
"set_app_badge_number" : 4,
"update_currency" : {
"heart_wax" : 95
}
}

View File

@ -0,0 +1,36 @@
/*
POST /service/relationship/api/v1/free_gifts/get_pending HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: Xi
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 141
*/
//Request
{
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:23 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 52
*/
//Response
{
"set_recvd_free_gifts" : [],
"set_sent_free_gifts" : []
}

View File

@ -0,0 +1,44 @@
/*
POST /service/relationship/api/v1/free_gifts/send HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (HP ENVY x360 Convertible 13-ay1xxx; win 10.0.22631; en)
X-Session-ID: 1be93222-7934-ec11-810d-c85acf455968
Content-Type: application/json
trace-id: lYZKbyz
user-id: 7bcff223-37a6-4856-a7ba-d23845079b3c
session: 2b393ebf9b28bb875b8a9146ba554a66
x-sky-level-id: 1509719447
Content-Length: 218
*/
//Request
{
"gift_type" : "gift_heart_wax",
"session" : "2b393ebf9b28bb875b8a9146ba554a66",
"target" : "d4a641b9-cdc1-49b6-9cd5-f63abc35740c",
"user" : "7bcff223-37a6-4856-a7ba-d23845079b3c",
"user_id" : "7bcff223-37a6-4856-a7ba-d23845079b3c"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Sun, 14 Jul 2024 13:12:40 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 179
*/
//Response
{
"result" : "ok",
"sent_free_gift" : {
"currency_count" : 0,
"currency_type" : "",
"gift_id" : 13206332062,
"recvd" : false,
"to_id" : "d4a641b9-cdc1-49b6-9cd5-f63abc35740c",
"type" : "gift_heart_wax"
}
}

View File

@ -0,0 +1,36 @@
/*
POST /service/relationship/api/v1/get_follow HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: f
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 1509719447
Content-Length: 190
*/
//Request
{
"creator" : "372eb5a1-83a4-4f8b-8b3a-e6f0d852c9a5",
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:18:57 GMT
Content-Type: application/json; charset=utf-8
Connection: keep-alive
Content-Length: 16
*/
//Response
{
"result" : null
}

View File

@ -0,0 +1,37 @@
/*
POST /service/relationship/api/v1/get_follower_count HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: pv1e2Im
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 141
*/
//Request
{
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "530281c9-f3bd-4c75-9f5f-6fc8c33336e0"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:28 GMT
Content-Type: application/json; charset=utf-8
Connection: keep-alive
Content-Length: 12
*/
//Response
{
"count" : 1101
}

View File

@ -0,0 +1,72 @@
/*
POST /service/social-feed/api/v1/get_by_ids HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: LFaV9jw
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 1509719447
Content-Length: 311
*/
//Request
{
"author_id" : "5b913eb2-1f05-4777-8665-59f8bbb94361",
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"sharer_id" : "0f7b8a78-1835-4336-aae4-13779dcdb747",
"social_feed_ids" : [ "1fe50726-1a07-460f-bf0b-a9204ef5b057:b7a71262" ],
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:18:57 GMT
Content-Type: application/json; charset=utf-8
Connection: keep-alive
Content-Length: 741
*/
//Response
{
"feeds" : [
{
"comments_enabled" : true,
"create_at" : 1720423209245,
"expire_at" : 1720768809000,
"extra_data" : {
"chunk_count" : 0,
"ori" : "(0,0.374,0,0.928)",
"pos" : "(67.228,0.791,450.124)",
"prompt_used" : "",
"resource_id" : "",
"scale" : "(1,1,1)",
"sub_type" : 0
},
"message" : "쉬다가세요 ",
"pool_name" : "Dawn",
"pool_type" : "SharedSpaceCandle",
"reactions" : {
"is_poisoned" : false,
"total_comment_count" : 2,
"total_hide_count" : 0,
"total_like_count" : 12,
"total_like_reward_message_id" : 0,
"total_report_count" : 0,
"total_reported_comment_count" : 0,
"total_super_like_count" : 0
},
"social_feed_id" : "1fe50726-1a07-460f-bf0b-a9204ef5b057:77c5915b",
"state" : "normal",
"tags" : null,
"user_id" : "5b913eb2-1f05-4777-8665-59f8bbb94361"
}
],
"result" : "ok"
}

View File

@ -0,0 +1,48 @@
/*
POST /service/social-feed/api/v1/get_reactions HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: iM25VMj
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 1509719447
Content-Length: 248
*/
//Request
{
"author_id" : "c4525e64-564c-4813-b224-c9f472cd7c32",
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"social_feed_id" : "24f80d32-c825-4af1-a131-2e9ffbd93c98",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:34 GMT
Content-Type: application/json; charset=utf-8
Connection: keep-alive
Content-Length: 241
*/
//Response
{
"reactions" : {
"is_poisoned" : false,
"total_comment_count" : 3,
"total_hide_count" : 0,
"total_like_count" : 29,
"total_like_reward_message_id" : 0,
"total_report_count" : 0,
"total_reported_comment_count" : 0,
"total_super_like_count" : 0
},
"user_reactions" : null
}

View File

@ -0,0 +1,41 @@
/*
POST /service/social-feed/api/v1/get_user_feeds HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: FyVy1WB
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 1509719447
Content-Length: 238
*/
//Request
{
"batch_size" : 1,
"pool_name" : "CandleSpaceEnd", //levelname
"pool_type" : "RecordingCandle", //type MessageBoat/SharedSpaceCandle etc
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"skip" : 0,
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:32 GMT
Content-Type: application/json; charset=utf-8
Connection: keep-alive
Content-Length: 13
*/
//Response
{
"feeds" : []
}

View File

@ -0,0 +1,483 @@
/*
POST /service/social-feed/api/v2/get_curated_feeds HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: fxY
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 1509719447
Content-Length: 517
*/
//Request
{
"amounts_returned" : {
"inner_ring" : {
"exact_amount" : true,
"followed" : 12,
"friends" : 12,
"local" : 0,
"public" : 12
},
"outer_ring" : {
"exact_amount" : false,
"followed" : 0,
"friends" : 0,
"local" : 0,
"public" : 0
}
},
"get_full_documents" : true,
"page" : 0,
"random_seed" : 19916000,
"search_area" : {
"coordinates" : "(117,195,-443)",
"inner_radius" : 14,
"level_id" : "Prairie_ButterflyFields",
"outer_radius" : 0,
"pool_name" : "Prairie_ButterflyFields",
"pool_type" : "SharedSpaceCandle",
"vertical_radius" : 24
},
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:33 GMT
Content-Type: application/json; charset=utf-8
Connection: keep-alive
Content-Length: 9976
*/
//Response
{
"inner_ring" : {
"followed" : null,
"friends" : null,
"local" : null,
"public" : [
{
"comments_enabled" : true,
"create_at" : "2024-07-08T09:03:16.976Z",
"expire_at" : "2024-07-12T09:03:16Z",
"extra_data" : {
"chunk_count" : 0,
"ori" : "(0,0.998,0,0.063)",
"pos" : "(107.533,195.599,-434.401)",
"prompt_used" : "",
"resource_id" : "",
"scale" : "(1,1,1)",
"sub_type" : 0
},
"followed" : false,
"friend" : false,
"local_creation" : false,
"message" : "ウーみー突然だけど氷タンフル作った?(┛'-')┛=❄❄❄",
"pool_name" : "Prairie_ButterflyFields",
"pool_type" : "SharedSpaceCandle",
"reactions" : {
"is_poisoned" : false,
"total_comment_count" : 1,
"total_hide_count" : 0,
"total_like_count" : 7,
"total_like_reward_message_id" : 0,
"total_report_count" : 0,
"total_reported_comment_count" : 0,
"total_super_like_count" : 0
},
"social_feed_id" : "9ab57953-9a04-462c-9b8d-214530405332:d4709301",
"state" : "normal",
"tags" : null,
"user_id" : "6f9a3b0e-7879-4abc-b3b5-c466964f2d91"
},
{
"comments_enabled" : true,
"create_at" : "2024-07-07T09:38:31.598Z",
"expire_at" : "2024-07-11T09:38:31Z",
"extra_data" : {
"chunk_count" : 0,
"ori" : "(0,0.011,0,1)",
"pos" : "(109.168,195.595,-439.562)",
"prompt_used" : "",
"resource_id" : "",
"scale" : "(1,1,1)",
"sub_type" : 0
},
"followed" : false,
"friend" : false,
"local_creation" : false,
"message" : "Skyはじめましたハートが必要なんですお願いしますアスレチック作りました",
"pool_name" : "Prairie_ButterflyFields",
"pool_type" : "SharedSpaceCandle",
"reactions" : {
"is_poisoned" : false,
"total_comment_count" : 1,
"total_hide_count" : 0,
"total_like_count" : 30,
"total_like_reward_message_id" : 0,
"total_report_count" : 0,
"total_reported_comment_count" : 0,
"total_super_like_count" : 1
},
"social_feed_id" : "7daa3227-fbb1-47af-ba6e-ca13d5884c16:b24b5d29",
"state" : "normal",
"tags" : null,
"user_id" : "c5893e92-08b1-411b-9319-44de530b5d8b"
},
{
"comments_enabled" : true,
"create_at" : "2024-07-08T12:06:07.024Z",
"expire_at" : "2024-07-12T12:06:07Z",
"extra_data" : {
"chunk_count" : 0,
"ori" : "(0,0.949,0,-0.315)",
"pos" : "(105.849,195.502,-440.785)",
"prompt_used" : "",
"resource_id" : "",
"scale" : "(1,1,1)",
"sub_type" : 0
},
"followed" : false,
"friend" : false,
"local_creation" : false,
"message" : "❤️",
"pool_name" : "Prairie_ButterflyFields",
"pool_type" : "SharedSpaceCandle",
"reactions" : {
"is_poisoned" : false,
"total_comment_count" : 4,
"total_hide_count" : 0,
"total_like_count" : 60,
"total_like_reward_message_id" : 0,
"total_report_count" : 0,
"total_reported_comment_count" : 0,
"total_super_like_count" : 1
},
"social_feed_id" : "7d486b00-1979-4534-baf0-46a94e1879f7:115e14ad",
"state" : "normal",
"tags" : null,
"user_id" : "056c33dd-36a8-4321-a9da-3bf349db3c49"
},
{
"comments_enabled" : true,
"create_at" : "2024-07-06T10:43:06.908Z",
"expire_at" : "2024-07-10T10:43:06Z",
"extra_data" : {
"chunk_count" : 0,
"ori" : "(0,0.947,0,0.322)",
"pos" : "(108.21,195.527,-439.373)",
"prompt_used" : "",
"resource_id" : "",
"scale" : "(1,1,1)",
"sub_type" : 0
},
"followed" : false,
"friend" : false,
"local_creation" : false,
"message" : "浮いている椅子の上に椅子があります",
"pool_name" : "Prairie_ButterflyFields",
"pool_type" : "SharedSpaceCandle",
"reactions" : {
"is_poisoned" : false,
"total_comment_count" : 5,
"total_hide_count" : 0,
"total_like_count" : 27,
"total_like_reward_message_id" : 0,
"total_report_count" : 0,
"total_reported_comment_count" : 0,
"total_super_like_count" : 0
},
"social_feed_id" : "5c316a27-2296-414d-b455-5829d40f851d:42fd778e",
"state" : "normal",
"tags" : null,
"user_id" : "82b8eee8-1d9b-4fe4-a8a6-d191ecade02c"
},
{
"comments_enabled" : true,
"create_at" : "2024-07-12T05:53:21.447Z",
"expire_at" : "2024-07-16T05:53:21Z",
"extra_data" : {
"chunk_count" : 0,
"ori" : "(0,0.888,0,0.461)",
"pos" : "(113.024,195.756,-441.775)",
"prompt_used" : "",
"resource_id" : "",
"scale" : "(1,1,1)",
"sub_type" : 0
},
"followed" : false,
"friend" : false,
"local_creation" : false,
"message" : "Sillones(?",
"pool_name" : "Prairie_ButterflyFields",
"pool_type" : "SharedSpaceCandle",
"reactions" : {
"is_poisoned" : false,
"total_comment_count" : 0,
"total_hide_count" : 0,
"total_like_count" : 2,
"total_like_reward_message_id" : 0,
"total_report_count" : 0,
"total_reported_comment_count" : 0,
"total_super_like_count" : 0
},
"social_feed_id" : "58fb172e-d3eb-4992-9cd0-c9a13c71e3ce:a3c6a208",
"state" : "normal",
"tags" : null,
"user_id" : "163a635d-9a28-40cf-ab60-f55091de9600"
},
{
"comments_enabled" : true,
"create_at" : "2024-07-10T22:17:44.462Z",
"expire_at" : "2024-07-14T22:17:44Z",
"extra_data" : {
"chunk_count" : 0,
"ori" : "(0,0.2,0,0.98)",
"pos" : "(107.922,195.64,-434.247)",
"prompt_used" : "",
"resource_id" : "",
"scale" : "(1,1,1)",
"sub_type" : 0
},
"followed" : false,
"friend" : false,
"local_creation" : false,
"message" : "Place to chat and get to know people😊❤",
"pool_name" : "Prairie_ButterflyFields",
"pool_type" : "SharedSpaceCandle",
"reactions" : {
"is_poisoned" : false,
"total_comment_count" : 1,
"total_hide_count" : 0,
"total_like_count" : 8,
"total_like_reward_message_id" : 0,
"total_report_count" : 0,
"total_reported_comment_count" : 0,
"total_super_like_count" : 1
},
"social_feed_id" : "553ee388-0614-4916-8256-22d631b7f5f8:1bb0e456",
"state" : "normal",
"tags" : null,
"user_id" : "d9e33c85-ba52-4651-a607-d4aafbb0c749"
},
{
"comments_enabled" : true,
"create_at" : "2024-07-06T05:21:08.836Z",
"expire_at" : "2024-07-10T05:21:08Z",
"extra_data" : {
"chunk_count" : 0,
"ori" : "(0,0.003,0,1)",
"pos" : "(123.894,195.693,-440.98)",
"prompt_used" : "",
"resource_id" : "",
"scale" : "(1,1,1)",
"sub_type" : 0
},
"followed" : false,
"friend" : false,
"local_creation" : false,
"message" : "You're here! I'm so proud of you! <3",
"pool_name" : "Prairie_ButterflyFields",
"pool_type" : "SharedSpaceCandle",
"reactions" : {
"is_poisoned" : false,
"total_comment_count" : 2,
"total_hide_count" : 0,
"total_like_count" : 8,
"total_like_reward_message_id" : 0,
"total_report_count" : 0,
"total_reported_comment_count" : 0,
"total_super_like_count" : 0
},
"social_feed_id" : "6dd9142b-fd58-4f36-88ca-31d272fcc709:4c9cc26b",
"state" : "normal",
"tags" : null,
"user_id" : "85176de6-9241-4656-91c7-e76d169b03eb"
},
{
"comments_enabled" : true,
"create_at" : "2024-07-12T06:19:33.503Z",
"expire_at" : "2024-07-16T06:19:33Z",
"extra_data" : {
"chunk_count" : 0,
"ori" : "(0,0.959,0,0.282)",
"pos" : "(108.653,195.487,-441.452)",
"prompt_used" : "",
"resource_id" : "",
"scale" : "(1,1,1)",
"sub_type" : 0
},
"followed" : false,
"friend" : false,
"local_creation" : false,
"message" : "座布団",
"pool_name" : "Prairie_ButterflyFields",
"pool_type" : "SharedSpaceCandle",
"reactions" : {
"is_poisoned" : false,
"total_comment_count" : 4,
"total_hide_count" : 0,
"total_like_count" : 9,
"total_like_reward_message_id" : 0,
"total_report_count" : 0,
"total_reported_comment_count" : 0,
"total_super_like_count" : 1
},
"social_feed_id" : "c9441461-912b-4b41-8207-f088ced8a3e8:c79f90b1",
"state" : "normal",
"tags" : null,
"user_id" : "d1fc77c3-49ab-48c4-a227-9115f157c350"
},
{
"comments_enabled" : true,
"create_at" : "2024-07-09T12:44:15.95Z",
"expire_at" : "2024-07-13T12:44:15Z",
"extra_data" : {
"chunk_count" : 0,
"ori" : "(0,0.864,0,0.504)",
"pos" : "(107.793,195.606,-437.018)",
"prompt_used" : "",
"resource_id" : "",
"scale" : "(1,1,1)",
"sub_type" : 0
},
"followed" : false,
"friend" : false,
"local_creation" : false,
"message" : "Make somoe noise!",
"pool_name" : "Prairie_ButterflyFields",
"pool_type" : "SharedSpaceCandle",
"reactions" : {
"is_poisoned" : false,
"total_comment_count" : 5,
"total_hide_count" : 0,
"total_like_count" : 58,
"total_like_reward_message_id" : 0,
"total_report_count" : 0,
"total_reported_comment_count" : 0,
"total_super_like_count" : 0
},
"social_feed_id" : "a7bdb368-c8ad-4cdd-a233-4ffb21a790a6:b966a107",
"state" : "normal",
"tags" : null,
"user_id" : "a2011269-431b-422b-ad54-9877d7d7fd0a"
},
{
"comments_enabled" : true,
"create_at" : "2024-07-06T14:47:43.991Z",
"expire_at" : "2024-07-10T14:47:43Z",
"extra_data" : {
"chunk_count" : 0,
"ori" : "(0,0.983,0,-0.185)",
"pos" : "(120.38,195.954,-444.586)",
"prompt_used" : "",
"resource_id" : "",
"scale" : "(1,1,1)",
"sub_type" : 0
},
"followed" : false,
"friend" : false,
"local_creation" : false,
"message" : "🍵🌟",
"pool_name" : "Prairie_ButterflyFields",
"pool_type" : "SharedSpaceCandle",
"reactions" : {
"is_poisoned" : false,
"total_comment_count" : 0,
"total_hide_count" : 0,
"total_like_count" : 3,
"total_like_reward_message_id" : 0,
"total_report_count" : 0,
"total_reported_comment_count" : 0,
"total_super_like_count" : 0
},
"social_feed_id" : "83acc419-b5be-43ce-9010-f54e0b7860c6:ed8f87db",
"state" : "normal",
"tags" : null,
"user_id" : "dbd17646-97a6-46c9-ac0e-60b39ed635ba"
},
{
"comments_enabled" : true,
"create_at" : "2024-07-11T14:23:53.828Z",
"expire_at" : "2024-07-15T14:23:53Z",
"extra_data" : {
"chunk_count" : 0,
"ori" : "(0,-0.048,-0,0.999)",
"pos" : "(108.195,195.694,-435.468)",
"prompt_used" : "",
"resource_id" : "",
"scale" : "(1,1,1)",
"sub_type" : 0
},
"followed" : false,
"friend" : false,
"local_creation" : false,
"message" : " Picnic",
"pool_name" : "Prairie_ButterflyFields",
"pool_type" : "SharedSpaceCandle",
"reactions" : {
"is_poisoned" : false,
"total_comment_count" : 1,
"total_hide_count" : 0,
"total_like_count" : 7,
"total_like_reward_message_id" : 0,
"total_report_count" : 0,
"total_reported_comment_count" : 0,
"total_super_like_count" : 0
},
"social_feed_id" : "b659cf92-b5c5-420e-a055-d05727d37b46:6ac16db0",
"state" : "normal",
"tags" : null,
"user_id" : "14cfecbe-306b-472e-b50a-5ca66ce1e1c0"
},
{
"comments_enabled" : true,
"create_at" : "2024-07-07T14:15:42.107Z",
"expire_at" : "2024-07-11T14:15:42Z",
"extra_data" : {
"chunk_count" : 0,
"ori" : "(0,0.98,0,-0.201)",
"pos" : "(106.666,195.537,-435.247)",
"prompt_used" : "",
"resource_id" : "",
"scale" : "(1,1,1)",
"sub_type" : 0
},
"followed" : false,
"friend" : false,
"local_creation" : false,
"message" : "( ◜𖥦◝ )",
"pool_name" : "Prairie_ButterflyFields",
"pool_type" : "SharedSpaceCandle",
"reactions" : {
"is_poisoned" : false,
"total_comment_count" : 2,
"total_hide_count" : 0,
"total_like_count" : 34,
"total_like_reward_message_id" : 0,
"total_report_count" : 0,
"total_reported_comment_count" : 0,
"total_super_like_count" : 0
},
"social_feed_id" : "c9727291-2b65-441c-bcd3-fb80ab6ef1d1:3b3a73f0",
"state" : "normal",
"tags" : null,
"user_id" : "a67b0977-2479-460f-bd2d-361a5c259eef"
}
],
"total_available_results" : 128,
"total_followed" : 0,
"total_friends" : 0
},
"outer_ring" : null
}

View File

@ -0,0 +1,121 @@
/*
POST /service/stage/api/v1/get HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: 3gxcl6B
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 2477345666
Content-Length: 265
*/
//Request
{
"level_id" : "Prairie_ButterflyFields",
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"stage_id" : "Prairie_ButterflyFields_CNDL",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "505cb082-b715-4e8d-8346-f53fabc9c565"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:29:59 GMT
Content-Type: text/plain; charset=utf-8
Connection: keep-alive
Content-Length: 23
*/
//Response
{
"level_id" : "Prairie_ButterflyFields",
"props" : [
{
"name" : "CharSkyKid_Prop_RugMediumArgyle",
"ori" : "(0.034,0.196,0.045,0.979)",
"pos" : "(-2.233,-0.102,-0.318)",
"scale" : "(1,1,1)",
"type" : "unlock",
"userDataBool" : false,
"version" : 0
},
{
"name" : "CharSkyKid_Prop_PillowXmas",
"ori" : "(0.042,0.002,0.038,0.998)",
"pos" : "(-2.233,-0.079,0.182)",
"scale" : "(1,1,1)",
"type" : "unlock",
"userDataBool" : false,
"version" : 0
},
{
"name" : "CharSkyKid_Prop_PillowXmas",
"ori" : "(0.054,-0.381,0.019,0.923)",
"pos" : "(-3.233,-0.126,-0.152)",
"scale" : "(1,1,1)",
"type" : "unlock",
"userDataBool" : false,
"version" : 0
},
{
"name" : "CharSkyKid_Prop_AP11Rose_01",
"ori" : "(0.03,0.287,0.048,0.956)",
"pos" : "(-2.896,-0.148,0.405)",
"scale" : "(1,1,1)",
"type" : "unlock",
"userDataBool" : false,
"version" : 0
},
{
"name" : "CharSkyKid_Prop_IslandUmbrella_01",
"ori" : "(0.043,-0.012,0.037,0.998)",
"pos" : "(-3.122,-0.219,1.032)",
"scale" : "(1,1,1)",
"type" : "unlock",
"userDataBool" : false,
"version" : 0
},
{
"name" : "CharSkyKid_Prop_AP17Chimes",
"ori" : "(0,0.934,0,0.358)",
"pos" : "(-3.522,1.381,1.524)",
"scale" : "(1,1,1)",
"type" : "unlock",
"userDataBool" : false,
"version" : 0
},
{
"name" : "CharSkyKid_Prop_Balloon_01",
"ori" : "(0.035,0.447,0.042,0.893)",
"pos" : "(-0.568,0.064,-0.016)",
"scale" : "(1,1,1)",
"type" : "unlock",
"userDataBool" : false,
"version" : 0
},
{
"name" : "CharSkyKid_Prop_AP11Fox_01",
"ori" : "(-0.03,0.938,0.084,-0.336)",
"pos" : "(-2.28,0.052,0.054)",
"scale" : "(1,1,1)",
"type" : "unlock",
"userDataBool" : false,
"version" : 0
}
],
"sequence" : 1,
"stage_id" : "Prairie_ButterflyFields_CNDL",
"status" : "OK",
"user_id" : "505cb082-b715-4e8d-8346-f53fabc9c565"
}
/*
{"status":"no result"} //as Content-Type: text/plain
*/

View File

@ -0,0 +1,45 @@
/*
POST /service/status/api/v1/add_unlock HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: t1IvrKT
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 1649439303
Content-Length: 180
*/
//Request
{
"ack" : false,
"name" : "FirstSpiritGained",
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:22:38 GMT
Content-Type: application/json; charset=utf-8
Connection: keep-alive
Content-Length: 114
*/
//Response
{
"result" : "ok",
"update_status_unlocks" : [
{
"ack" : false,
"name" : "FirstSpiritGained",
"type" : "level",
"unlocked_at" : 0
}
]
}

View File

@ -0,0 +1,37 @@
/*
POST /service/status/api/v1/delete_unlock HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: mTkFcBG
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 263580627
Content-Length: 173
*/
//Request
{
"name" : "XXDepositingQueuednight",
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 22:02:17 GMT
Content-Type: application/json; charset=utf-8
Connection: keep-alive
Content-Length: 67
*/
//Response
{
"delete_status_unlocks" : [ "XXDepositingQueuednight" ],
"result" : "ok"
}

View File

@ -0,0 +1,241 @@
/*
POST /service/status/api/v1/get_unlocks HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: 5ajPecH
user-id: 28696b5b-3fd0-4b47-bfe0-bdfab9328214
session: c96c4ac19fd8ead1e884e4a852a7e933
x-sky-level-id: 3526133726
Content-Length: 141
*/
//Request
{
"session" : "c96c4ac19fd8ead1e884e4a852a7e933",
"user" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"user_id" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:22 GMT
Content-Type: application/json; charset=utf-8
Connection: keep-alive
Content-Length: 2953
*/
//Response
{
"status_unlocks" : [
{
"ack" : true,
"name" : "AP22GuideUnhusked",
"type" : "level",
"unlocked_at" : 1717266234
},
{
"ack" : false,
"name" : "AP22Unlock",
"type" : "level",
"unlocked_at" : 1717266146
},
{
"ack" : false,
"name" : "AP22Unlock_AviaryIntro",
"type" : "level",
"unlocked_at" : 1717266146
},
{
"ack" : false,
"name" : "AP22Unlock_CS",
"type" : "level",
"unlocked_at" : 1717266147
},
{
"ack" : true,
"name" : "AviaryVillage_found",
"type" : "level",
"unlocked_at" : 1717266061
},
{
"ack" : false,
"name" : "DayStatueForm",
"type" : "level",
"unlocked_at" : 1717265030
},
{
"ack" : false,
"name" : "DuskStatueForm",
"type" : "level",
"unlocked_at" : 1717265034
},
{
"ack" : true,
"name" : "FinishedIntro",
"type" : "level",
"unlocked_at" : 1717264612
},
{
"ack" : false,
"name" : "LearnedResume",
"type" : "level",
"unlocked_at" : 1717267155
},
{
"ack" : false,
"name" : "MainstreetDawnIntro",
"type" : "level",
"unlocked_at" : 1717266385
},
{
"ack" : false,
"name" : "MainstreetFinishedOnboarding",
"type" : "level",
"unlocked_at" : 1717266113
},
{
"ack" : true,
"name" : "MainstreetPortalGuidance",
"type" : "level",
"unlocked_at" : 1717267130
},
{
"ack" : false,
"name" : "NightStatueForm",
"type" : "level",
"unlocked_at" : 1717265035
},
{
"ack" : true,
"name" : "OnboardedInMainstreet",
"type" : "level",
"unlocked_at" : 1717264466
},
{
"ack" : true,
"name" : "PlayedFlyingIntro",
"type" : "level",
"unlocked_at" : 1717264611
},
{
"ack" : false,
"name" : "RainStatueForm",
"type" : "level",
"unlocked_at" : 1717265031
},
{
"ack" : true,
"name" : "StormGateDawn",
"type" : "level",
"unlocked_at" : 1717267648
},
{
"ack" : false,
"name" : "StormStatueForm",
"type" : "level",
"unlocked_at" : 1717265037
},
{
"ack" : false,
"name" : "SunsetStatueForm",
"type" : "level",
"unlocked_at" : 1717265032
},
{
"ack" : true,
"name" : "ap06unlock_ap20_fetch_01_claimFx",
"type" : "level",
"unlocked_at" : 1717265536
},
{
"ack" : false,
"name" : "ap06unlock_ap20_fetch_01_quest_done",
"type" : "level",
"unlocked_at" : 1717264978
},
{
"ack" : false,
"name" : "ap06unlock_ap20_fetch_01_quest_started",
"type" : "level",
"unlocked_at" : 1717264834
},
{
"ack" : true,
"name" : "ap06unlock_ap20_fetch_03_claimFx",
"type" : "level",
"unlocked_at" : 1717265800
},
{
"ack" : false,
"name" : "ap06unlock_ap20_fetch_03_quest_done",
"type" : "level",
"unlocked_at" : 1717265792
},
{
"ack" : false,
"name" : "ap06unlock_ap20_fetch_03_quest_started",
"type" : "level",
"unlocked_at" : 1717265578
},
{
"ack" : false,
"name" : "ap06unlock_ap20_fetch_04_quest_started",
"type" : "level",
"unlocked_at" : 1717265908
},
{
"ack" : false,
"name" : "first_loaded_CandleSpace",
"type" : "level",
"unlocked_at" : 1717264465
},
{
"ack" : false,
"name" : "first_loaded_Dawn",
"type" : "level",
"unlocked_at" : 1717266382
},
{
"ack" : false,
"name" : "first_loaded_MainStreet",
"type" : "level",
"unlocked_at" : 1717264610
},
{
"ack" : false,
"name" : "first_loaded_MainStreetFlyingIntro",
"type" : "level",
"unlocked_at" : 1717264467
},
{
"ack" : false,
"name" : "first_loaded_MainStreet_ShopOutfits",
"type" : "level",
"unlocked_at" : 1717264931
},
{
"ack" : false,
"name" : "first_loaded_MainStreet_ShopProps",
"type" : "level",
"unlocked_at" : 1717266204
},
{
"ack" : true,
"name" : "mainstreetRevealedMural",
"type" : "level",
"unlocked_at" : 1717266058
},
{
"ack" : false,
"name" : "tutorial_shop",
"type" : "level",
"unlocked_at" : 1717265038
}
]
}

View File

@ -0,0 +1,84 @@
/*
POST /starwatch/auth/api/v1/auth HTTP/1.1
Host: live.radiance.thatgamecompany.com
User-Agent: Sky-Live-com.tgc.sky.win/0.26.1.275000 (MS-7D25; win 10.0.19045; en)
X-Session-ID: 34fcfe6b-b8c8-ae17-af8c-d8bbc1910e73
Content-Type: application/json
trace-id: x6VklXm
x-sky-level-id: 3526133726
Content-Length: 411
*/
//Request
{
"apiKey" : "d6d0db2f-0dec-42cd-bda8-736139858367",
"appKey" : "8fc3fa4c-4ab9-4ef3-98cb-4c73647a5991",
"claimedSkyId" : "28696b5b-3fd0-4b47-bfe0-bdfab9328214",
"deviceId" : "iexwgv3rjfbdo4bsjnhxiqtnofdgswtqhflte2rlmrufcwdrhb5e66sygbtda4tomfdgu4q-",
"gameversion" : "0.26.1",
"osVersion" : "10.0.19045",
"platform" : "win",
"preferredLanguage" : "en",
"preferredSupportedLanguage" : "en",
"sessionToken" : "c96c4ac19fd8ead1e884e4a852a7e933"
}
/*
HTTP/1.1 200 OK
Server: nginx/1.14.2
Date: Fri, 12 Jul 2024 21:16:09 GMT
Content-Type: application/json; charset=utf-8
Connection: keep-alive
X-Powered-By: Express
Access-Control-Allow-Origin: *
ETag: W/"8ea-u/awk5WPNx7JBgjGBJpwyYnDjng"
Via: 1.1 google
Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
Content-Length: 2282
*/
//Response
{
"acls" : {
"publish" : [
"sky/live/device/iexwgv3rjfbdo4bsjnhxiqtnofdgswtqhflte2rlmrufcwdrhb5e66sygbtda4tomfdgu4q-/user/28696b5b-3fd0-4b47-bfe0-bdfab9328214/event/+",
"sky/live/device/iexwgv3rjfbdo4bsjnhxiqtnofdgswtqhflte2rlmrufcwdrhb5e66sygbtda4tomfdgu4q-/user/28696b5b-3fd0-4b47-bfe0-bdfab9328214/remote/prompt"
],
"subscribe" : [
"sky/live/device/iexwgv3rjfbdo4bsjnhxiqtnofdgswtqhflte2rlmrufcwdrhb5e66sygbtda4tomfdgu4q-/user/28696b5b-3fd0-4b47-bfe0-bdfab9328214/remote/submit"
]
},
"expiresSeconds" : 86400,
"isJwt" : true,
"mqtt" : {
"brokerUrl" : "stream.starwatch.ai",
"clientId" : "sky-live-game-5Zr6W5vUCqMLwBkfEbhsSY",
"password" : "eyJhbGciOiJIUzI1NiJ9.eyJjbGllbnRfaWQiOiJza3ktbGl2ZS1nYW1lLTVacjZXNXZVQ3FNTHdCa2ZFYmhzU1kiLCJ1c2VybmFtZSI6InVzZXI6OnNreS1saXZlLWdhbWUtNVpyNlc1dlVDcU1Md0JrZkViaHNTWSIsImFjbCI6eyJwdWIiOlsic2t5L2xpdmUvZGV2aWNlL2lleHdndjNyamZiZG80YnNqbmh4aXF0bm9mZGdzd3RxaGZsdGUycmxtcnVmY3dkcmhiNWU2NnN5Z2J0ZGE0dG9tZmRndTRxLS91c2VyLzI4Njk2YjViLTNmZDAtNGI0Ny1iZmUwLWJkZmFiOTMyODIxNC9ldmVudC8rIiwic2t5L2xpdmUvZGV2aWNlL2lleHdndjNyamZiZG80YnNqbmh4aXF0bm9mZGdzd3RxaGZsdGUycmxtcnVmY3dkcmhiNWU2NnN5Z2J0ZGE0dG9tZmRndTRxLS91c2VyLzI4Njk2YjViLTNmZDAtNGI0Ny1iZmUwLWJkZmFiOTMyODIxNC9yZW1vdGUvcHJvbXB0Il0sInN1YiI6WyJza3kvbGl2ZS9kZXZpY2UvaWV4d2d2M3JqZmJkbzRic2puaHhpcXRub2ZkZ3N3dHFoZmx0ZTJybG1ydWZjd2RyaGI1ZTY2c3lnYnRkYTR0b21mZGd1NHEtL3VzZXIvMjg2OTZiNWItM2ZkMC00YjQ3LWJmZTAtYmRmYWI5MzI4MjE0L3JlbW90ZS9zdWJtaXQiXX0sImlhdCI6MTcyMDgxODk2OSwiaXNzIjoic3ctYXV0aCIsImF1ZCI6InN3LWJyb2tlciIsImV4cCI6MTcyMDkwNTM2OSwianRpIjoidG1nUVpXQU5qaWY5SjY0eVB5OHlzdyJ9.PgBOL4xv3smioYigwhXlqMTkHReFVdwp77HxCnAOZpk",
"username" : "user::sky-live-game-5Zr6W5vUCqMLwBkfEbhsSY"
},
"ownerId" : "sky::live::game::5Zr6W5vUCqMLwBkfEbhsSY",
"settings" : {
"blockedEvents" : [
"account_resource_waiting",
"candle_accepted_cost",
"checkpoint",
"dayhm_manta_count_03",
"debug_trace",
"find_prev_game_request",
"match_joined",
"net_game_connect_attempt",
"net_game_move_timeout",
"sync_user_data",
"*_loaded",
"loaded_*",
"player_nearby",
"player_nearby_left"
],
"enableEventPublishing" : true
},
"starwatchSessionId" : "21b8b9b6-b80a-422c-98a3-9186548331a1"
}